in reply to Re: Regex isn't performing like I think it should
in thread Regex isn't performing like I think it should
(Personally, I'd make that [^<]* instead of +, just in case you get data with links <right><up><against><each><other>, but that's your call.)while ( $string =~ m!(<a[^>]*>)([^<]+</a[^>]*>)!ig )
|
|---|