word >>-word(n)----------------------------------------------------->< Returns the
[n]
th whitespace-delimited
word in the receiving string or the null string if the receiving string has
fewer than
[n]
words. The
[n]
must be a positive whole number. This
method is exactly equivalent
to String class - word method "Now is the time"~word(3) -> "the" "Now is the time"~word(5) -> "" |