Help for this page
my $string = 'SomeOtherString'; $string =~ s/([[:upper:]])/ $1/g; my @words = split' ',$string; # @words = ('Some', 'Other', 'String');