Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: Matching numeric value between two digits

by 7stud (Deacon)
on Feb 05, 2013 at 02:11 UTC ( [id://1017044]=note: print w/replies, xml ) Need Help??


in reply to Matching numeric value between two digits

Also rather than the clumsy /\d{1}-\d{2}/ you might wish to use /[0-9]+/

Of course, those regexes don't match the same things:

use strict; use warnings; use 5.012; my $str = "8-91"; if ($str =~ /(\d{1}-\d{2})/) { say $1; } if ($str =~ /([0-9]+)/) { say $1; } --output:-- 8-91 8
The op's regexes don't make much sense.

Log In?
Username:
Password:

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

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

    No recent polls found