Your use of escaped brackets in the second regex leaves me uncertain about your original data... because my first thought was that you misunderstood the use of a character class. But on second thoughts, and taking a wild guess what at what the data might be (a number inside square brackets, in the original string), this example may clarify:
#!/usr/bin/perl
use 5.016;
use strict;
use warnings;
# 1039350
$_ = " this is a number [12345] ";
if(/^\s*(.+)\s*/){
say "in outter 'if', \$1: $1";
$_ = $1;
if($1 =~ /\[(\d+)\]/){
say "\t But in inner if, \$1 : $1";
}
}
=head output:
in outter 'if', $1: this is a number [12345]
But in inner if, $1 : 12345
=cut
A couple points, beyond those made above:
- In your title, "Perl $" is not particularly good shorthand for "Perl vars" as the $ sigil specifies only one of several kinds of variables
- Including a data sample is usually useful, and often clears up ambiguities
- perldoc perlre and company will be helpful.
If you didn't program your executable by toggling in binary, it wasn't really programming!
In reply to Re: Perl $
by ww
in thread Perl $
by lddzjwwy
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.