Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
i am having a line in text file i read that file in perl script and have to change that line for example
if (-e "test2122.asm")
i have to change it to
if (-e "../test2122.asm")
i tried using =~ tr and s| but was nor successful. how this can be done using perl script.