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

Re: One regex construct to handle multiple string types

by Krambambuli (Curate)
on Nov 29, 2008 at 10:19 UTC ( [id://726757]=note: print w/replies, xml ) Need Help??


in reply to One regex construct to handle multiple string types

while(<DATA>) { /(.*\.)?(\S+)/; print "$2\n"; } __DATA__ 2L bar.2L bar.ber.bir. 2L bar.ber.bir.2L
works for me.

The above reads your request as "get the first substring part not containing whitespaces that follows the last dot char (if there is one) in the input string; otherwise, return the first substring part of the input string that doesn't contain whitespace".

Hope that helps.

Krambambuli
---

Replies are listed 'Best First'.
Re^2: One regex construct to handle multiple string types
by ikegami (Patriarch) on Nov 29, 2008 at 11:35 UTC
    /(.*\.)?(\S+)/

    has a needless capture

    /(?:.*\.)?(\S+)/

    And the .* is useless (OP didn't specify he wanted last possible match)

    /\.?(\S+)/

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (5)
As of 2024-04-19 07:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found