A beginners question (again):
I want to replace all occurences of <BR> in a string with a carriage return. This is what I used:
$desc =~ s|<BR>|\r|g;
but it doesn't give me any result. The "<BR>" is still printed instead of actually performing a carriage return.
Thanks for the help.
Cheers
Steve
I want to replace all occurences of <BR> in a string with a carriage return. This is what I used:
$desc =~ s|<BR>|\r|g;
but it doesn't give me any result. The "<BR>" is still printed instead of actually performing a carriage return.
Thanks for the help.
Cheers
Steve