F-056 subchar
原文:replace a list of characters in a string with a new list
中文:將字串s中,與list1相符的所有字元全替換成list2中與list1位置相應
的字元。
格式:%subchar(s,list1,list2)
範例:#SHOW %subchar("hello world","hl","12")
將字串hello world中,字元h換成1,l換成2,並顯示結果:
1e22o wor2d
#SHOW %subchar("hello world","hl","")
將字串hello world中,字元h換成"",l換成"",並顯示結果:
eo word