How to change the object of regular expression?
Regular Expressions
1
Posts
1
Posters
7
Views
1
Watching
-
I have a formatted string which is an object of regular expression processing: item1 word 1 item2 word 1 word 2... item3 ... I run regular expression to find / "match" all itemx words - no problem. when I detect "item2" I need to change the regular expression to find all "word" - not problem there however how to I change the object of processing , string , to run this new regular expression starting from where "item2" was matched? - not from the start of the object. Thank you very much.