QString關於查詢 擷取字串問題

2021-10-07 08:48:07 字數 959 閱讀 9249

解釋:

qstring可以通過index進行查詢

int qstring:

:indexof

(const qstring &str,

int from =0,

qt::casesensitivity cs = qt:

:casesensitive)

const

解析:

index查詢字串中str的位置

例子:

qstring parent =

qstringliteral

("王/傑/最/帥/了"

);

要求:

先把字串中"/「去除,在查詢「」最帥「」字串

解析:把要去除」/",首先需要把字串按"/"進行拆分,拆分後新增入新的字串,在從新的字串中查詢"最帥"字元。

//查詢

qstring parent =

qstringliteral

("王/傑/最/帥/了");

qstringlist list = parent.

split

("/");

//分割

parent.

clear()

;for

(size_t i =

0; i < list.

size()

; i++

)int sindex = parent.

indexof

(qstringliteral

("最帥"))

; qstring str = parent.

mid(sindex,2)

;

檢視

Repeater 擷取字元

1.前台 2.後台 protected string getdemand string strdemand string titledemand strdemand.replace r n replace string htmltitle return htmltitle 方法二 string.fo...

mysql擷取字元

前言 整理圖書資料,由於圖書資料之前沒有經過人工矯正爬取完成後直接匯入資料庫而且資料來源很多,無奈只好整理資料。錯誤資料展示 小馬寶莉2018年第2集 總第16集 大師計畫 4月刊 李敖回憶錄 大師珍藏版 噹噹全國獨家 正版全新直髮 宮澤賢治小森林童話 水仙月四日 宮澤賢治,田誠 繪,彭懿 海豚傳媒...

QString 擷取分割字串

qt中qstring中提供兩種簡單易行的分隔字串的函式,section和split 1.qstring seciton qstring section提供了四種過載函式,如下 qstring section qchar sep,int start,int end 1,sectionflags fla...