Hi, I am trying to use lookaround in my RegEx matches but the engine doesn't seem to support it.
Do you have any clue on what could replace it ?
*.(?=,)
Would match
Hi,
in
Hi, my name is Luc.
But the engine fail to do Lookarounds it seems.
Best regards,
Luc
Hi Luc,
It looks like the regular expression library we’re using in FinalBuilder does not support look-arounds (http://regexpstudio.com/TRegExpr/Help/RegExp_Syntax.html). You’ll either need to use the run script action to write the regex using Javascript (http://www.w3schools.com/JS/js_obj_regexp.asp), or change the expression to not use look-arounds.
Regards,
Paul.