1 # Copyright (C) 2007-2009, Parrot Foundation.
6 C<split> is an operation that breaks up a string at certain marker
7 characters, and puts the resulting parts into an array. The first
8 argument to C<split> is the pattern to search for, and the second
9 argument is the string to search. The result is an array PMC.
16 split words, " ", "the quick brown fox"
29 # vim: expandtab shiftwidth=4 ft=pir: