RE: [PHP] regexp for URL

2003-06-08 Thread Boaz Yahav
://www.weberdev.com/ Today!!! To see where PHP might take you tomorrow. -Original Message- From: Mattia [mailto:[EMAIL PROTECTED] Sent: Monday, June 09, 2003 7:14 AM To: [EMAIL PROTECTED] Subject: [PHP] regexp for URL Does anyone have a good regular expression for capturing all http URL in a string

Re: [PHP] regexp for URL

2003-06-08 Thread David Otton
On Mon, 09 Jun 2003 07:13:43 +0200, you wrote: >Does anyone have a good regular expression for capturing all http URL in >a string? >now i'm using ?(http://[a-z0-9-/_;&=+-\.\?:@]+)\b?mi >in one of my programs, that is, all strings beginning with http:// and >contain chars like a-z0-9 ... > >does

[PHP] regexp for URL

2003-06-08 Thread Mattia
Does anyone have a good regular expression for capturing all http URL in a string? now i'm using ?(http://[a-z0-9-/_;&=+-\.\?:@]+)\b?mi in one of my programs, that is, all strings beginning with http:// and contain chars like a-z0-9 ... does anione have something better? thank you -- PHP Gener