I believe checking a regex for failure can prevent many headaches later.
#!/usr/bin/perl
use strict;
use warnings;
my $problem = '1 / 2 = ';
my ($number1, $number2, $operator);
if ($problem =~ /(\d+)\s*([-+*\/])\s*(\d+)/){
($number1, $number2, $operator) = ($1, $2, $3);
print "$number1 $number2 $operator\n";
}
else{
print "regex failed\n";
}
I also agree with
monarch that as you know what the operator can be you can use a character class.
FWIW. I always have to check the docs to check which characters need escaping. They say that:
The special characters for a character class are -]\^$ and are matched using an escape...
Now I'm sure that's a backslash in there. But I couldn't get the regex above to work without escaping the forward slash.
Anyone see what I'm missing here?
Update:
It's because I used the forward slash as the quote for the regex!
Many thanks to the monks in the CB.
In reply to Re: '+' to +
by wfsp
in thread '+' to +
by NateTut
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.