I'm writing a small module for checking whether or not a phone number is correct, and I'd like to be able to return informative error messages, such as "Missing area code" and similar. But how do I do this in a neat manner?
The function is to be used in a web form, and it returns a cleaned-up version of the phone number on success (or the empty string, if the user didn't enter a phone number).
I'm guessing that what I want to do when the number is incorrect in some way is to return undef, and set $@ to something explanatory (which then could be given as user feedback in the webform).
But how do I do this nicely? Redefine die() (add some kind of __DIE__ hook?) or write my own sub to call on failure, which returns and sets $@ (so that my checks may still read e.g. /^$/ or fail "no number"?
I read perlmodstyle ("Error handling and messages"), but I could find no answer to my question there.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.