How to replace new line character with br
$tempString = “Hello is testing for new line\n to br”;
$tempString =~ s/\n/<br\/>/;
output = “Hello is testing for new line
to br”;
How to replace new line character with br
$tempString = “Hello is testing for new line\n to br”;
$tempString =~ s/\n/<br\/>/;
output = “Hello is testing for new line
to br”;
Thanks for the helpful info. I really enjoy reading posts on here.