string StringSetChar( string text, int pos, int value)
在指定位置返回带有改变代码的字串符复本。
参数:
text - 改变的字串符代码。
pos - 字串符种代码的位置。可以自0 至 StringLen(text)。
value - 新取得ASCII 代码。
示例:
- string str="abcdefgh";
- string str1=StringSetChar(str, 3, 'D');
- // str1 is "abcDefgh"
复制代码
|