Creative, Informative and Entertaining Stuff for everyone

Sunday September 5th 2010

Categories

Archives

Calender

September 2010
S M T W T F S
« Jul    
 1234
567891011
12131415161718
19202122232425
2627282930  

Posts Tagged ‘nl2br’

nl2br in perl

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";