Hi, I have tag, which needs to be sequentially numbered. The text goes like this...
<exm>This is example 1
<exm>This is example 2
<exm>This is example 3
<exm>This is example 4
I need to number the <exm> element sequentially until they are sequential.
<exm num="1">This is example 1
<exm num="2">This is example 2
<exm num="3">This is example 3
<exm num="4">This is example 4
If the same set of elements appear in a different part of the text, the number needs to restart.
The code I wrote to achieve is:
$_ =~ s/<exm>/'<exm num="'.$exmno++.'">'/egs;
if ($_ != /<exm>/g) {$exmno=0}
I have the content stored in
$_. I don't know why, but I am not able to get the numbers reset if the line does not encounter a
<exm> tag. Can anyone help me out?
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.