在字符串的指定位置插入字符串 – stringInsert

在字符串的指定位置插入字符串。

定义

string stringInsert(string str, int offset, string str1);

参数

str:

字符串

offset:

偏移

str1:

要插入的字符串 offset 从 0开始,如果小于0或者大于字符串的长度,返回原字符串。

返回值

新的字符串

示例

// text2.txt 显示的文本为“ABCtext 123”
text2.txt = stringInsert("text 123", 0, "ABC"); 

// text2.txt 显示的文本为“text 123ABC”
text2.txt = stringInsert("text 123", 8, "ABC");