03-05-2017, 06:19 AM
Hi,
i want to find capture the text between "merge" and "replace". I tried different combos but I can't get it to work.
Here's my text
DO NOT MERGE THE FILES do this to each one individually
REPLACE
Here's are the regex matching patterns that I've tried
;merge.+?replace
;merge.*?replace
;merge(.*)replace
Here's the code I tried using
i made used the flags: insensitive, find all, and multi-line but I keep getting "no match found"
Please help.
i want to find capture the text between "merge" and "replace". I tried different combos but I can't get it to work.
Here's my text
DO NOT MERGE THE FILES do this to each one individually
REPLACE
Here's are the regex matching patterns that I've tried
;merge.+?replace
;merge.*?replace
;merge(.*)replace
Here's the code I tried using
i made used the flags: insensitive, find all, and multi-line but I keep getting "no match found"
Please help.