C++ : 在一个string字符串中查找给定的字符串并提取

 C++ : 在一个string字符串中查找给定的字符串并提取

1、string.find_last_of('\\');   // 返回类型 size_t 

2、string.find_first_of(' ');   // 返回类型 size_t 

3、string.substr(size_t a,size_t b)  //位置a  , 位置b;提取中间字符串

4、string.find(string a,0)  ;// 起始位置0

#include 
#include
using namespace std;

int main()
{
    string txt ="E:\\mnt\\check\\abc.c 235";
    cout<

BY:ZYT

你可能感兴趣的:(c++,c)