How do i replace all line feeds with <BR>'s
all "'s with "
etc.
thanks
Printable View
How do i replace all line feeds with <BR>'s
all "'s with "
etc.
thanks
hi,
i will not be able to give you exact code..
but using Perl regular expression you can find and
replace words..
s/<CRLF>/<BR>/g
option g at the end is to replace all..
hope this helps..
sarath