in reply to Re: grep question
in thread grep question

Thanks

Thanks for all the advises

I actually had tried something like  map { /param=(.*)/; return $1; } which did not work.

I have modified my code to be like this  return map { /memtype=(.*?)"/i ? $1 : (); } $self -> collect_data ('all'); as suggested by you monks!

PS: I hope at least the reply post looks better !!

Replies are listed 'Best First'.
Re^3: grep question
by Joost (Canon) on May 26, 2005 at 23:21 UTC