Code: Select all
h(?<=a)bas
It matches teh character 'h' naturally.
then it starts looking behind to find an character 'a'
If it finds the character 'a' then it goes forward and matches the next character that should be 'b'[/syntax]
Moderator: General Moderators
Code: Select all
h(?<=a)b