Hi,
I have a question regarding delaying interpolation of a variable when it is used in a regular expression. The below code snippet demonstrates the problem
%cat test.pl
#!/usr/bin/perl
use strict;
my $line = "System has tool zigzag version 3.6";
my $match = 'System\s+has\s+tool\s+([0-9a-zA-Z_-]+)\s+version\s+(.*)';
my $replace = 'System has tool $1 version ABC';
$line =~ s/$match/$replace/g;
print "Line after replacement: $line \n";
When I execute the above code the output I get is :
%./test.pl
Line after replacement: System has tool $1 version ABC
The output I need is :
Line after replacement: System has tool zigzag version ABC
How do I get $1 to be interpolated in the replacement pattern ? I tried other variants like : e,ee etc but none yeild the result I need.
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.