I need to find a sting in a block of text and remove it...
How is this done?
For instance my text would be:
The quick brown fox jumped over the lazy dog.
I want to remove:
"quick brown fox" from that string...
Here is the catch, the string I want to remove will always
start with "quick" and end with "fox", but "brown" may be blue, it
may be green, it may be ugly, it may be anything... So in someway I
need to have a script that looks for "quick" and looks for "fox"
and remove those words and anything inbetween...
How is that done?
Thanks!!!