Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36
Chrome 111
Mac OS X 10.15.7
Desktop
one year ago
Test name Executions per second
Regex 1 6746372.0 Ops/sec
Regex 2 184862.4 Ops/sec
Split 11369295.0 Ops/sec
Substring 11318999.0 Ops/sec
Script Preparation code:
AخA
 
var str = 'https://www.testsite.com/some-path/another-path/2019/my-amazing-page-name.html';
Tests:
  • Regex 1

     
    str.replace(/^(.*[\\\/])/, '');
  • Regex 2

     
    str.replace(/([^\/]+)(?=[^\/]*\/?$)/, '');
  • Split

     
    str.split('/').pop();
  • Substring

     
    str.substring(str.lastIndexOf('/')+1);