progs/catastrophic/catastrophic.js
author Christian Urban <christian.urban@kcl.ac.uk>
Wed, 15 Dec 2021 19:00:01 +0000
changeset 864 b5b1bc0a603b
parent 753 d94fdbef1a4f
permissions -rwxr-xr-x
added

#!/usr/local/bin/node

// A case of catastrophic backtracking in JavaScript/Node.js
//
// regex: (a*)*b
// strings: aa...
//
// call with:
//
//  $> ./catastrophic.js 20
//
// call with timing as:
//
//  $> time ./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)