Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Question about Numbers, Strings & SPLIT

by erroneousBollock (Curate)
on Nov 29, 2007 at 04:38 UTC ( [id://653770]=note: print w/replies, xml ) Need Help??


in reply to Question about Numbers, Strings & SPLIT

You need to escape '.' in the regular expression like this:

  split /\./

'.' in a regular expression matches any single character, rather than the period character.

Please have a look through perlre.

Personally, I like to do:

my ($whole,$fract) = ($hjd =~ /(\d+)(\.\d+)?/);
If $fract isn't defined, it'll be evaluated as zero when used numerically.

-David

Replies are listed 'Best First'.
Re^2: Question about Numbers, Strings & SPLIT
by kinnerc (Initiate) on Nov 29, 2007 at 04:49 UTC
    David:

    Bingo! You're a sanity saver! "." is a metacharacter! Of course! One blasted simple thing!

    THANK YOU!!!

    Doc Kinne

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (3)
As of 2024-04-20 01:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found