Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: Regex with digits

by mkmcconn (Chaplain)
on Jul 31, 2002 at 17:47 UTC ( [id://186546]=note: print w/replies, xml ) Need Help??


in reply to Regex with digits

Abigail-II's solution filters out all lines that end in a single-digit, which is exactly++ what you asked for here. But, if you are also trying to filter out strings with 'non-word' characters in the final chunk as you sought in this thread, remember that '\w' matches only alphanumeric plus '_'. It will not match '-' so, if you are still trying to perform both filters, you will continue to skip line 2 of your example.

Combining the two requirements, adding '-' to the 'words' character set, does this do what you want?

#!/usr/bin/perl -w use strict; foreach my $lastone (<DATA>){ if ($lastone =~ m{/[-\w]+$} && $lastone !~ m{/\d$}){ print $lastone; } } __END__ hull/uuu/8 cook/too/un-8-9 luck/goo@@ luck/goo yty~uyuoo~iu99~##uyt~hu/dwo9 chuck/ii@@/a_

mkmcconn

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (3)
As of 2024-04-19 05:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found