C-015 delnitem
原文:removes the nth item from a string list and returns the new list
中文:從字串表中移除第N項內容並回應新的字串表。(7.21)
格式:%delnitem(s,n)
範例:#show %delnitem(@SpellList,5)
移除字串表SpellList中的第五項,並顯示新字串表內容。5.55版沒有,
它可能只做表面的修改,原內容則不更動,如果要紀錄新的字串表,應:
#va spellList %delnitem(@SpellList,5)
或使用#delnitem去修改(5.55可用)。