Question
RegExp problem
Hey.
If here is a RegExp guru?
I rarely use RegExp myself.
Who knows why in photoshop does not work Negative Lookbehind (?<!...)
And how to make an analog?
var s = "123abc123aac"
alert( s.search(/(?<!ab)c/) )
I want this alert to say 11.