$text = "How are you"; $break ='\n'; $text =~ s/\s/$break/g; print $text; #### How\nare\nyou #### $text = "How are you"; $break ="\n"; $text =~ s/\s/$break/g; print $text; #### How are you
## How\nare\nyou ##
## $text = "How are you"; $break ="\n"; $text =~ s/\s/$break/g; print $text; ##
## How are you