If you wish to match three or more "S"s then you can use the pattern
/S{3,}/ and if you wanted to match, say, three to six of them then do
/S{3,6}/. If you want to replace more than one occurrence of something in a string then make your substitution global by using the
g modifier. Here is a bit of code to illustrate these points. Note that I capture the "S"s that I match using parentheses, "(" and ")", then use what I captured in the substitution as
$1.
$ perl -le '
-> $str = q{sfSSSfsdSSSSSseSShySSSScvbcv};
-> print $str;
-> $str =~ s{(S{3,})}{<tag>$1</tag>}g;
-> print $str;'
sfSSSfsdSSSSSseSShySSSScvbcv
sf<tag>SSS</tag>fsd<tag>SSSSS</tag>seSShy<tag>SSSS</tag>cvbcv
$
To look at previous nodes you have written go to your home node (you will see a "Tony1" link at the top of each page in the Monastery) and on that page you will see a link with the label "Writeups" next to it; click that and you will see all of your previous nodes.
I hope this helps you.
Cheers,
JohnGG
Update: Fixed typos.
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.