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
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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.