Script Preparation code:
AخA
 
var html = "<p>A</p><table><tr><td>1</td><td>2</td></tr></table><p>B</p>";
Tests:
  • test

     
    /<table\b[^>]*>/i.test(html)
  • exec

     
    /<table\b[^>]*>/i.exec(html)
  • match

     
    html.match(/<table\b[^>]*>/i)
  • indexOf

     
    html.toLowerCase().indexOf('<table')
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    test
    exec
    match
    indexOf

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36
Chrome 120 on Windows
View result in a separate tab
Test name Executions per second
test 6746597.5 Ops/sec
exec 5783589.5 Ops/sec
match 5416325.0 Ops/sec
indexOf 11072875.0 Ops/sec