the following javascript line is throwing error with the message only on IE:
SyntaxError: Unexpected Identifier
var result = new RegExp('(?<=\"compliantNotes\": \").*(?=\"\s+\"compliantDetected\":)', 'sgmi').exec(inputString);
I created a working copy here: RegExp Online
The regular expression seems to work fine on Chrome, returning the expected result but I can't figure out why that throws error in IE 11.
Thank you