返回某一字符串的子字符串 – stringSub
返回指定字符串的子字符串。
定义
string stringSub(string str, int start, int len);
参数
- str:
字符串
- start:
起始位置
- len:
长度
返回值
子字符串
示例
// 返回字符串“text123”中的某段字符,位置从第一个字符开始,向后取4个字符,并由文本控件text2显示,字符串会返回“text”
text2.txt = stringSub("text 123", 0, 4);