- 反转
- 字符串相加
- 转为int型:利用
stoi
将字符串转为整型(https://www.geeksforgeeks.org/stdstoi-function-in-cpp/) - C++ 字符串split
int idx = str.find(' ')
如有多个字符该如何,返回第一次出现的位置吗
str.substr(idx, length)
起始坐标+子串长度
字符子串
用到的函数
#include <string>
idx = str.find_last_of
str.substr(strIdx, length)
旧电脑上应该保存一些code snippet
标签:string,idx,int,C++,str,字符串,find From: https://www.cnblogs.com/Todd-Qi/p/15016029.html