How would I change

$output = ereg_replace("<script.*</script>", "", $output);

to preg?

 I tried $output = preg_replace("/<script.*</script>/", "", $output);

Thanks

EDIT: Sorry, messed up formatting

link|improve this question

@minitech sorry format was messed up – Kevin May 4 '11 at 19:47
You might have to escape the <. It has special meaning in Perl regular expressions, so just replace < with \< both times. – minitech May 4 '11 at 19:49
Oh, and the / before script too. – minitech May 4 '11 at 19:54
feedback

1 Answer

up vote 2 down vote accepted

If you use / as the delimiter, you must escape every occurence of / within the pattern, or its recocnized as delimiter itself and everthing following will be used as modifiers (which will probably fail).

"/<script.*<\/script>/"

or you make your life easy and just choose a different delimiter. I prefer ~, because it occurs in patterns quite infrequent

"~<script.*</script>~"

Update: See comments for the description, what happens here

"~<script.*</script>~siU"
link|improve this answer
Thanks, works now! – Kevin May 4 '11 at 19:53
@ridgerunner: The question was about the syntax, not the semantic of the pattern. But reflecting the meaning of the pattern you are right of course; Ive added it. – KingCrunch May 4 '11 at 22:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.