Use preg_match_all

Think this will work. But i'm for sure no regular expresion guru :)

preg_match_all("/src=(.*)\040/i", $Text, $Result);
print_r($Result);

Gr,
Thijs

> Hi everybody!
> I want to get src of image  form a $text, I have a below text
>
> $Text = <table border="1" cellpadding="3%" cellspacing="3%" width="100%">
>    <tr>    <td width="20%">
>      <img align="middle" border="0" id=userupload/78/Autumn.jpg
> src=userupload/78/Autumn.jpg onClick="javascript:ViewImage(this.id);"
> width="100" height="100" >
>     </td>
>    <td></td></tr>   </table>
>   </td>
>   <td class="frame2_middle_right"></td>
>  </tr>
>  <tr>
>   <td class="frame2_bottom_left"></td>
>      <td class="frame2_bottom_center">
>      </td>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to