Test name | Executions per second |
---|---|
to string - replace - and parsed | 2489568.0 Ops/sec |
match | 3045610.2 Ops/sec |
const str = '#10';
const strNew = parseInt(str.replace(/\D/g,''));
const str = '#10';
const strNew = str.toString().match(/\d+/g).map(Number);