C find函式相關用法

2021-09-11 06:04:37 字數 472 閱讀 7869

c++中stl裡提供了許多字串操作的函式,下面是字串查詢方面的部分函式用法簡介:

1.find()

查詢第一次出現的目標字串:

#include#includeusing namespace std;

int main()

其中find_first_of()也可以約定初始查詢的位置:s1.find_first_of(s2, 2) ;

3.find_last_of()

這個函式與find_first_of()功能差不多,只不過find_first_of()是從字串的前面往後面搜尋,而find_last_of()是從字串的後面往前面搜尋。

4.rfind()

反向查詢字串,即找到最後乙個與子串匹配的位置

5.find_first_not_of()

找到第乙個不與子串匹配的位置

---------------------

原文:

c find函式用法實驗

1 size t find const string str,size tpos 0 const 查詢物件 string類物件 2 size t find const char s,size t pos 0 const 查詢物件 字串 3 size t find const char s,size ...

c find函式使用

find函式的幾個簡單使用 include include using namespace std int main 1,返回乙個字串或字元位置 尋找字串 int position 0 int start 0 position a.find b,start 意思是在a中尋找b字串,尋找的開始位子是s...

Pandas相關函式用法

1 concat concat函式是在pandas底下的方法,可以將資料根據不同的軸作簡單的融合12 pd.concat objs,axis 0,join outer join axes none,ignore index false,keys none,levels none,names none...