C++ string类find函数使用的一些注意点

  • 写代码的时候经常会遇到需要匹配字符的的处理,string的find函数还是很好用的,具体用法如下:
    string str = "mmrywxjx2015 xyz";string::size_type position;
    string r = string("grywxjx");
    position = str.find(r); // 获取到的值是第一次出现的那个值的位置
    if (str.find(r) != str.npos) //不等于npos,证明找到了
    {
    // 找到字符串后的处理
    }
  • find和find_first_of比较
    find是完全匹配,find_first_of只要有一个匹配。例:
    string str ="ogddf";
    string::size_type position1 = str.find(""); //返回0
    string::size_type position2 = str.find_first_of(""); //返回npos

你可能感兴趣的:(C++ string类find函数使用的一些注意点)