this is my current regex:
(?<=[\$T|\s|\p{P}|\$%\$%])sampleString
I want to match all sampleString in my richtextBox
and some instance of sample string in my richtextBox is something like this :
$TsampleString
$%$%sampleString
The problem is that my regex matches this : TsampleString, $sampleString, %sampleString.
How can I fix this regex lookbehind assertion? thanks