in reply to How to split into paragraphs?
Hi jrw, this may help you if I understood your question correctly.
use strict; use warnings; my $str; while (<DATA>){ chomp; ($_ =~ m/^\w/) ? ($str .= "<\/p>\n<p>$_\n") :($str.="$_\n"); } $str =~ s/^(<\/p>)(.+)$/$2$1/gsi; print $str; __DATA__ abc: asdf1 asdf2 def: asdf3 ghi: asdf4 asdf5
Regards,
Velusamy R.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: How to split into paragraphs?
by jrw (Monk) on Nov 16, 2006 at 12:22 UTC | |
by Samy_rio (Vicar) on Nov 16, 2006 at 13:03 UTC |