filburt1
03-21-2003, 05:24 PM
The regular expression for stripping out PHP tags from a string is:
/<\?(.*)\?>/siU
What is the expression for matching everything but text that matches this expression? Just:
/^(the whole expression)/siU
?
/<\?(.*)\?>/siU
What is the expression for matching everything but text that matches this expression? Just:
/^(the whole expression)/siU
?