in reply to Re^3: How do I reverse the order of the first and last word of a string?
in thread How do I reverse the order of the first and last word of a string?
You may want to fix that to properly handle punctuation and capitalization:
$_ = 'This is the word.'; $_ =~ s[(^\w+)(\s.*\s)(\w+)([[:punct:]]?)$][\u$3$2\l$1$4]; print
--
print "Just Another Perl Adept\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: How do I reverse the order of the first and last word of a string?
by BrowserUk (Patriarch) on Mar 11, 2007 at 08:00 UTC |