Test name | Executions per second |
---|---|
regex | 1791957.0 Ops/sec |
double replace | 1437081.6 Ops/sec |
substring | 2526704.5 Ops/sec |
var testStr = '[marketCode::US]';
var outputStr = '';
outputStr = testStr.replace(/[\[\]]/g, '');
outputStr = testStr.replace('[', '').replace(']', '');
outputStr = testStr.substring(1, testStr.length - 1);