strinsert

文字列を挿入する。

形式

strinsert <strvar> <index> <string>

解説

文字列変数 <strvar> の <index> 位置(1オリジン)に、文字列 <string> を挿入する。

s='abc'
strinsert s 3 'XYZ'  ; 'abXYZc'
messagebox s s

s='abc'
strinsert s 1 'XYZ'  ; 'XYZabc'
messagebox s s

s='abc'
strinsert s -1 'XYZ'  ; シンタックスエラー
messagebox s s

s='abc'
strinsert s 0 'XYZ'  ; シンタックスエラー
messagebox s s

s='abc'
strinsert s 4 'XYZ'  ; 'abcXYZ'
messagebox s s

s='abc'
strinsert s 5 'XYZ'  ; シンタックスエラー
messagebox s s

参照

strmatch
strreplace
strremove