I try to insert an optional whitespace. Somehow it's not working in the lookbehind.
Regex:
(?i)(?<=SomeValue\s=').*?(?=')
SomeValue='String2Find' (matches)
SomeValue ='String2Find' (not matching but should match)
I try to insert an optional whitespace. Somehow it's not working in the lookbehind.
Regex:
(?i)(?<=SomeValue\s=').*?(?=')
SomeValue='String2Find' (matches)
SomeValue ='String2Find' (not matching but should match)