There were several suggested methods in answer to
this thread. My
solution repeatedly substituted in a
while loop. I got to wondering if you could do a global substitution in one fell swoop instead by assigning to
pos in a regex code block to set the match back to the start of the string. This doesn't seem to work although the assignment to
pos() does seem to register. Here's a short script to show what I'm trying, firstly the loop variant then the global substitution.
#!/usr/local/bin/perl -l
#
use strict;
use warnings;
$_ = q{DFR7234C__A_B_C_Bonzo_Dog_D_B};
print;
1 while s
{
(?<=__)
[A-Z]_
}
{}x;
print;
print q{-} x 25;
$_ = q{DFR7234C__A_B_C_Bonzo_Dog_D_B};
print;
s
{
(?<=__)
[A-Z]_
(?{
print pos();
pos() = 0;
print pos()
})
}
{}gx;
print;
print q{-} x 25;
Here's the output
DFR7234C__A_B_C_Bonzo_Dog_D_B
DFR7234C__Bonzo_Dog_D_B
-------------------------
DFR7234C__A_B_C_Bonzo_Dog_D_B
12
0
DFR7234C__B_C_Bonzo_Dog_D_B
-------------------------
As you can see, it doesn't look as if matching is reset so only one substitution is done. Am I trying to do something impossible here?
Cheers,
JohnGG
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.