- or download this
use strict;
...
print $my_name;
#prints August Ferdinand Mobius
- or download this
sub replace {
my($text, $pattern, $replacement, $modifiers) = @_;
(my $result = $text) =~ s/$pattern/$replacement/$modifiers;
return $result;
}
- or download this
$my_name = replace("august ferdinand mobius","\b(\w)","\U$1","igs");
- or download this
use strict;
...
return $result;
}