progs/catastrophic/catastrophic.js
author Christian Urban <christian.urban@kcl.ac.uk>
Thu, 30 Jul 2020 13:50:54 +0100
changeset 742 b5b5583a3a08
parent 741 e66bd5c563eb
child 745 7dc3643a0cc5
permissions -rw-r--r--
updated




// A case of catastrophic backtracking in JavaScript/Node.js
//
// regex: (a*)*b
// strings: aa...
//
// call with:
//
//  $> node catastrophic.js 20
//
// call with timing as:
//
//  $> time node catastrophic.js 25


const args = process.argv[2]

var str = 'a'.repeat(args);

console.log(str)

var re = /^((a)*)*b$/;

var res = re.test(str);

console.log(res)