in reply to Re^2: How to find a number and replace it with calculated value?
in thread How to find a number and replace it with calculated value?

... the increment of occurrence number is per line, how to make it per file or multipleline?

Move the  my $i = 1; statement to before the loop (untested):

my $i = 1; while (<DATA>) { ... s/\b(XP)\b/$1 . ' (' . $i++ . ')'/eg; print; }


Give a man a fish:  <%-{-{-{-<

Replies are listed 'Best First'.
Re^4: How to find a number and replace it with calculated value?
by Lejocode (Novice) on Mar 03, 2017 at 21:36 UTC
    It did it :) thank you guys.