string StringSubstr( string text, int start, void length)
从给出的位置的文本字串符开端提取字串符。
如果可能此函数返回提取字串符的副本,否则返回空字串符。
参数:
text - 将被提取的字串符。
start - 字串符开始索引。可以是自 0 至 StringLen(text)-1。
length - 字串符提取的宽度。如果参量值超过或等于 0 或者参量没有指定,字串符将被提取。
示例:
- string text="快速的棕色小狗跨越过懒惰的狐狸";
- string substr=StringSubstr(text, 4, 5);
- // 减去字串符是"快速"单词
复制代码
|