Help for this page

Select Code to Download


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