Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re^4: Match multiple number

by tobyink (Canon)
on Aug 19, 2018 at 06:33 UTC ( [id://1220598]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Match multiple number
in thread Match multiple number

Yes, it matches all the valid inputs, but it also matches various invalid inputs.

If all you care about is matching valid inputs and don't care about matching invalid ones, you can just do:

if (1) { ...; }

Replies are listed 'Best First'.
Re^5: Match multiple number
by dbuckhal (Chaplain) on Aug 19, 2018 at 14:10 UTC

    *click!* Got it... For my attempt, adding the \A assertion to match my \z should fix allowing invalid values.

    if $n =~ /\A\d{0,}[05]\z/

    But, I think I like the [0-9]*[05] based solutions better...

    Thanks,

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (6)
As of 2024-04-18 11:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found