Jump to content

hi-2 help with regex


yolop

Recommended Posts

i need 2 help in regex

1)

i need to take all the text between

 

<td class="object_desc" dir=rtl align=right valign=top background="iaasds/jxx05.gif" width="554" height="67" style="padding-right:20px;padding-left:35px;">

 

to

</td>

 

 

2)i need to take all the text between

<td width="100%" colspan="4" valign="top" align="right" dir=rtl><font face="Arial" size="2">

 

to

 

</font> 

 

thank

 

Link to comment
https://forums.phpfreaks.com/topic/141315-hi-2-help-with-regex/
Share on other sites

<pre>
<?php
$start = '<td class="object_desc" dir=rtl align=right valign=top background="iaasds/jxx05.gif" width="554" height="67" style="padding-right:20px;padding-left:35px;">';
$end = '</td>';
preg_match('/' . preg_quote($start) . '(.*?)' . preg_quote($end) . '/', $data, $matches);
print_r($matches);
?>
</pre>

Link to comment
https://forums.phpfreaks.com/topic/141315-hi-2-help-with-regex/#findComment-740422
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.