in reply to Re: Quick Regex quesiton
in thread Quick Regex quesiton

I just did that as an example. I want to capture what follows. So it would be deferred gross profit blah blah. blah blah. blah. So I want to capture the rest.And I don't know how :(

Does this work?

<code> if ($test=~m/(deferred|gross)(.*)(\.)(.*)(\.)(.*)(\.)) { print "$1, $2, $4, $6"; }

Or is there a more elegant way to do it?

Thank you so much :)

Replies are listed 'Best First'.
Re^3: Quick Regex quesiton
by chakreey (Acolyte) on Apr 08, 2011 at 18:17 UTC
    Your code doesn't work ! (.*) seems to consider real full stop (.) as any-character.

    btw wind's code works !