c:\@Work\Perl\monks>perl -wMstrict -le "my $str = 'the rain in spain falls mainly'; ;; my @ra = split \"\s\", $str; printf qq{'$_' } for @ra; print ''; ;; @ra = split '\s', $str; printf qq{'$_' } for @ra; " Unrecognized escape \s passed through at -e line 1. 'the rain in ' 'pain fall' ' mainly' 'the' 'rain' 'in' 'spain' 'falls' 'mainly'