
roolic
User
Mar 22, 2010, 11:17 PM
Post #4 of 4
(1885 views)
|
|
Re: [FishMonger] Need help with regular expression
[In reply to]
|
Can't Post
|
|
my @a_teg_contents = ($string =~ /<a[^>]*thumbTitle_browse[^>]*>(.*?)<\/a>/gi); NB: the /g option usage will cause returning an array of found substrings, the /s option is useless unless you use the variable within the regex (like =~ /$re/ )
|