Illustrator Regular Expression - Negative Lookbehind??
I am trying to use regex to find any digits except if they are preceded by "_" underscore symbol. If they are preceded by underscore it should not match. I have gotten this to work in RegEx testing but it looks as though negative lookbehind is not supported:
var reg = /(?<![_\d+])\d+/g;
Is there a way to accomplish this without negative lookbehind?
The regex above should return the digits in NAME12 but not NAME_12
Thanks in advance.
