What does word command do?
Can anyone explain it with example?
Can anyone explain it with example?
help word()
. display word("frog toad newt", 1)
frog
. display word("frog toad newt", 3)
newt
. display word("frog toad newt", -1)
newt
. display word("frog toad newt", 4)
. display word("frog toad newt", 0)
. local this = word("frog toad newt", 2)
. di "`this'"
toad
Comment