Hi there,
I've got a string of data, and I want to remove the content between two blocks of text using PHP. Here's an example:
"dataset123"
The text I want is here.
"endfile"
I want everything between those two quoted values. The values won't change, so they can be hard coded.
Any ideas? I've tried searching for something like this. I'm sure I have to use str_match and regex, but I'm not sure how to go about doing it.
Thanks! Jon