Thanks for posting more detail. Your first regex should have a space at the end, to reject the 9494 when you are looking for 94. Or the second regex should have a ^ anchor at the beginning. And both need to not use
. where you want to match a literal period. To match a period only, use \. (backslash period) or [.].
To see how it's going wrong, look at this:
$ perl -we'"131.228.132.245.9494 " =~ /(\d+)(.)(\d+)(.)(\d+)(.)(\d+)(.
+)(94) / &&
> print qq<\n\nfirst digits: "$1", first .: "$2",\n
> second digits: "$3", second dot: "$4",\n
> third digits: "$5", third dot: "$6",\n
> fourth digits: "$7", fourth dot "$8", portnum: "$9">'
first digits: "228", first .: ".",
second digits: "132", second dot: ".",
third digits: "245", third dot: ".",
fourth digits: "9", fourth dot "4", portnum: "94"
Do you see how the missing ^ and unbackslashed . combine to allow it to match?
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.