美文网首页
STL字符串string

STL字符串string

作者: speakspeak | 来源:发表于2019-04-19 20:26 被阅读0次

    ①子集

    str.substr(3,5)

    3是Pos,5是长度。

    ②追加

    str.append(str3.begin()+8,str3.end());

    ③擦除

    str.erase (str.begin()+9);

    ④转化

    stoi, stof

    ⑤查找

    std::string str ("There are two needles in this haystack with needles."); 

    std::string str2 ("needle");

    std::size_t found = str.find(str2);

    find的就是其位置的前一个坐标

    str.find("T");

    就会输出0.

    相关文章

      网友评论

          本文标题:STL字符串string

          本文链接:https://www.haomeiwen.com/subject/mrsppqtx.html