in reply to addd spaces after caps & reduce whitespace to single space
1:
2:my $text = "HelloMyNameIsJake"; $text =~ s!(.)([A-Z])!$1 $2!g; print "[$text]";
my $text = "So much spaces,\t\t\t\t\t\ttabs and\n\n\n\n\n\n\ +n newlines"; $text =~ s!\s+! !g; print $text;
In Section
Seekers of Perl Wisdom