Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

I don't like using a regex as my only determination that I've gotten a number from the user. I'd rather let Perl tell me with 'Scalar::Util::looks_like_number'. It's more reliable. In that case, you're mostly interested in ascertaining whether you're looking at Fahrenheit or Celsius, and whether the input came in an expected format. This will do just that.

use strict; use warnings; use Scalar::Util qw( looks_like_number ); # ..... if( $temp =~ m/^([0-9.+-]+)\s*([cf])/i and looks_like_number( $1 ) ) { my( $number, $system ) = ( $1, lc $2 ); # Do whatever you want here; # $number contains the temp, # and $system contains 'c' or 'f'. } else { die "Invalid number format."; }

You'll notice the regex isn't too particular about what constitutes a number. It allows characters that are reasonable for a number to contain, but doesn't bother with whether the number makes sense. That's the job of "looks_like_number()". That tells us whether Perl thinks it can use the input as a number. We're using the regex just for capturing of the chunks of the input that we think should have a number, and a measurement system.


Dave


In reply to Re: Regular Expressions by davido
in thread Regular Expressions by perlguru22

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (3)
As of 2024-04-19 20:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found