Jump to content

preg_replace


newman

Recommended Posts

hi . how can i remove the style attribute and its contents ( the code blow ) using preg_replace , as u can see the style"...." is in 3 lines:

<td style="background-color:#ffffff;
border:#0000001px;padding:3px;
font-style:italic"></td>

the code would turn to : <td></td> after replacing
how can i do that ?
thanks .
Link to comment
https://forums.phpfreaks.com/topic/8594-preg_replace/
Share on other sites

thanks for your answer . but i want to remove only the style=".." not other attributes , and some table cells have 0,1,2 or 3 lines of css like this :

<td style="border:#000000 1px;
background-color:#ffffff;
padding:3px">something</td>

or

<td style="border:#000000 1px;
background-color:#ffffff;">something</td>

or

<td style="border:#000000 1px">something</td>
Link to comment
https://forums.phpfreaks.com/topic/8594-preg_replace/#findComment-31953
Share on other sites

Next time please be more specific of what you mean. Try something like this:


$text = preg_replace('/(<td.*?)(style *?= *?(["\']).*?\\3)(.*?>.*?<\/td>)/si', '$1$4', $text);


Read up on expressions:
[a href=\"http://www.regular-expressions.info\" target=\"_blank\"]http://www.regular-expressions.info[/a]


Good luck.
Link to comment
https://forums.phpfreaks.com/topic/8594-preg_replace/#findComment-32042
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.