Hi!
I need to search a string for a specific tag and get the content between start tag and end tag:
text:
"Some text for testing <include> file1 </include> and heres some more text for testing <include> file2 </include>"
Now I want to get the text "file1" do something with it and replace the whole tag "<include> file1 </incude>" with the result.
Can this be done with regexp or something simlar and how?
Thanks :-)