in reply to Re: simple question on next line parameter
in thread simple question on next line parameter

Thanks for your replies. I could figure out how to include new line but I am still stuck with how to remove the  <br> at the end of each line

ikegami: you mentioned in the previous post to include

s/<br>$//;
where do I include that in my code? Please Advise experts!! Thanks again

Replies are listed 'Best First'.
Re^3: simple question on next line parameter
by ikegami (Patriarch) on May 19, 2009 at 15:33 UTC
    Wherever you want to remove the trailing <br>.

    It operates on $_ unless you bind another variable (using =~) to the s/// operator.