Hi,
Say I have a load of text like:
This is a line
This is another line
<!-- EDITABLE -->
This is a third line
This is a fourth
<!-- END EDITABLE -->
This is a fifth
What I want to do is get the text from the paragraph that is between the HTML comments. So it would return:
This is a third line
This is a fourth
But, I also want the other bits as well, like:
This is a line
This is another line
<!-- EDITABLE -->
and
<!-- END EDITABLE -->
This is a fifth
How would I gp about this?
Any help would be great!
Cheers,
Jord