Tests:
  • to string - replace - and parsed

    AخA
     
    const str = '#10';
    const strNew = parseInt(str.replace(/\D/g,''));
  • match

     
    const str = '#10';
    const strNew = str.toString().match(/\d+/g).map(Number);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    to string - replace - and parsed
    match

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2025 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36
Chrome 63 on Mac OS X 10.13.2
View result in a separate tab
Test name Executions per second
to string - replace - and parsed 2489568.0 Ops/sec
match 3045610.2 Ops/sec