Jump to content

stripping a certain string from a string with preg_match (regex help)


dsaba

Recommended Posts

I'm retrieving the source code from an html page, with lots of lines and lots of text.

 

I want to use preg_match to find this string in that:

<img src="captcha.php?width=100&height=30&characters=5" alt="captcha" align="top" />

 

what regex do I need to do it?

 

I tried this but it returned 0 , as if it did not find it in the text

 

<?php
$result = preg_match('/\<img src="captcha.php?width=100&height=30&characters=5" alt="captcha" align="top" \/\>/', $string);
?>

 

-thank you

Link to comment
Share on other sites

Try this:

 

$str='<img src="captcha.php?width=100&height=30&characters=5" alt="captcha" align="top" />';
$result = preg_match('|<img src="captcha.php\?width=100&height=30&characters=5" alt="captcha" align="top" />|', $str);
print "$result\n";

 

I am using | for the preg delimiter, so there is no need to escape the "/" inside.  The only thing needing escaping is the "?", which is a regex metacharacter.

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.