Jump to content

preg matching an address


mabog

Recommended Posts

Preg matching is killing me...

 

$string1="Here: http://www.example.com";

$string2="Here: http://www.example.com check that.";

 

How can I match that address only in both cases?

 

I have this:

preg_match_all("/[hH][tT][tT][pP]\:\/\/.*\s/",$string,$matches);
print_r($matches);

Which matches only string 2 AND with a space at the end.

 

And this:

preg_match_all("/[hH][tT][tT][pP]\:\/\/.*.(\s|\b)/",$string,$matches);
print_r($matches);

Which matchs both BUT with "check that" text at the end!

 

Is the trick to match that link as one word? How?

 

 

Link to comment
https://forums.phpfreaks.com/topic/214633-preg-matching-an-address/
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.