c++/string/substr()字符串截取

substr函数的功能是用于字符串的切剪.

substr是string对象里的操作函数之一.

substr即是substring(截取字串)-sub即是-subtraction减法的含义.

substr的第一个参数是截取开始的位置, 第二个参数是截取的长度.

截取自身的所有字符串即的代码:

string content = "hello, world"; content.substr(0, content.length()); 即是截取自身所有. 

位置0表示从自身第一个位置开始截取, content.length()表示截取的数量即是自身的数量.

更多示例子

string content = "hello world";

content.substr(0, 5); // 截取 "hello";

content.substr(6, 5); //截取 = "world"

content.substr(0, content.length()) //截取 = "hello world";

上一篇:Vue开发学习笔记:(二)、实现KendoUIGrid新增数据功能


下一篇:[转载] Python字符串解析