Why does method2 produce the "desired" result, whereas method1 does not? I assume it has to do with differences in word-boundary rules, but I cannot find documentation on it. Thanks in advance!
Code:
. local nestedList "a b c" "x y z" "s t u" . local method1 = word("`nestedList'", 2) . local method2: word 2 of "`nestedList'" . macro list _nestedList: a b c" "x y z" "s t u _method1: b _method2: x y z
Comment