
November 12th, 2008, 04:06 AM
|
|
Registered User
|
|
Join Date: Nov 2008
Posts: 2
Time spent in forums: 3 m 28 sec
Reputation Power: 0
|
|
PHP-General - RegExp trouble
I have to math an URL in an href link that can have single or double quote or not.
With this example
/href=(\"|\')(myurl|)/
the only match i have are:
href="myurl
and
href='myurl
but not
href=myurl
how i can make a regexp that match this type of code?
Thank you all...
|