Amay
Amay

Reputation: 1521

PHP regular expression preg_replace

I have some text with css style (taken from database, so when I use echo, css show up) and I want to use preg_replace to replace that css (for example with space). I tried to do something like that:

$some = "<style[\d\D]*>[\d\D]*?</style>" ;
$text = $result['text'];
$a =   preg_replace($some, " " ,$text);

...but its not working: Warning: preg_replace() [function.preg-replace]: Unknown modifier '['

Any idea how to fix that?

Thx for help and let me know if u need more info.

Upvotes: 0

Views: 135

Answers (1)

Sjoerd
Sjoerd

Reputation: 75568

Put your regex in delimeters. A slash is often used:

/regex/flags

In your case:

"/<style[\d\D]*>[\d\D]*?<\/style>/"

Upvotes: 3

Related Questions