Help for this page

Select Code to Download


  1. or download this
    my $land = 'Mexico';
    my @words = split(/\b/,$land);
    
  2. or download this
    $ perl -Mutf8 -e "print join(q{,},split(/\b/,\$ARGV[0])),qq{\n}" méxic
    +o
    m,é,xico
    ...
    $ perl -Mutf8 -e "print join(q{,},split(/\b/,q{méxico})),qq{\n}"
    Wide character in print at -e line 1.
    méxico