Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Array Filter and Lookahead

by Kenosis (Priest)
on Nov 20, 2012 at 19:13 UTC ( [id://1004779]=note: print w/replies, xml ) Need Help??


in reply to Array Filter and Lookahead

Here's another option:

my @test_filtered = map { (/(\d+)[\d.]*/g)[-1] // '' } @test;

Update: changed to // to handle 0s. Thanks again, AnomalousMonk.

Replies are listed 'Best First'.
Re^2: Array Filter and Lookahead
by AnomalousMonk (Archbishop) on Nov 20, 2012 at 20:13 UTC
    >perl -wMstrict -le "my @test = ('0 xx', 'xx 0', '0'); ;; my @test_filtered = map { (/(\d+)[\d.]*/g)[-1] || '' } @test; printf qq{'$_' } for @test_filtered; " '' '' ''

    Update:  // vice  || does the trick.

      Excellent catch, thank you! Changed disjunct positions...

        Changed disjunct positions...

        But that just causes a problem for strings that have no digits at all, e.g., 'xxx', which daugh016 wants to extract as '' (empty string).

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1004779]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (3)
As of 2024-04-25 07:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found