in reply to Re^2: How to add a new line after three or four lines from a pattern after getting that pattern
in thread How to add a new line after three or four lines from a pattern after getting that pattern

Hello again anirbanphys,

See the updated version that contains solution to the hard-coded problem. Now the script will pick up the string withing the interesting line.

Hope this helps. Let me know if you can not understand what the code does.

BR / Thanos

Seeking for Perl wisdom...on the process of learning...not there...yet!
  • Comment on Re^3: How to add a new line after three or four lines from a pattern after getting that pattern
  • Select or Download Code

Replies are listed 'Best First'.
Re^4: How to add a new line after three or four lines from a pattern after getting that pattern
by anirbanphys (Beadle) on Apr 03, 2019 at 11:53 UTC

    SURE !!! Yes I just got the code :D. And it is working. I commented the unwanted section. One Last help, how to get rid of from extra characters from the output? Do I have to parse again to delete the extra characters?

      Hello again anirbanphys,

      I do not know what extra characters from the output you are referring? If you mean the single quotes '' in the output it simply how Data::Dumper prints the output. If you want you can use alternatively:

      use feature 'say'; say $_ for @lines;

      Otherwise give me more information regarding the characters you want to remove. BR / Thanos

      Seeking for Perl wisdom...on the process of learning...not there...yet!