F-066 word
原文:return the ith word of the string s delimited by substring d.
Default for d is a space.
中文:回報字串s中,以分隔字串d分開後,第i個字串的內容。沒指定d時,
預設為空白字元。
格式:%word(s,i,d)
範例:#SHOW %word("abc defg hijk lm",3)
字串s為abc defg hijk lm,未設定d,所以為空白字元,
第3個字串為:hijk
#SHOW %word("This, is a, test.",2,", ")
字串s為This, is a, test.,d被設定為", "(逗號加一個空白字元),
第2個字為:is a