91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

QString中怎么利用正則表達式操作接口

發布時間:2021-07-27 16:37:41 來源:億速云 閱讀:407 作者:Leah 欄目:編程語言

QString中怎么利用正則表達式操作接口,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

介紹QString使用正則操作的接口。

Qt 5.0引入QRegularExpression,相比于QRegExp,前者修復了很多bugs,功能上也是兼容于QRegExp。推薦使用QRegularExpression。

contains

正則表達式rx是否與字符串中的某個地方匹配,匹配返回true,否則返回false。

bool contains(const QRegExp &rx) constbool contains(QRegExp &rx) constbool contains(const QRegularExpression &re) constbool contains(const QRegularExpression &re, QRegularExpressionMatch *match) const

count

返回正則表達式rx在字符串中匹配的次數。

int count(const QRegExp &rx) constint count(const QRegularExpression &re) const

indexOf

返回字符串中正則表達式rx的第一個匹配項的索引位置,從索引位置向前搜索。如果rx在任何地方都不匹配,則返回-1。

int indexOf(QRegExp &rx, int from = 0) constint indexOf(const QRegularExpression &re, int from = 0) constint indexOf(const QRegularExpression &re, int from, QRegularExpressionMatch *rmatch) const

lastIndexOf

返回字符串中正則表達式rx最后一個匹配項的索引位置,從索引位置向后搜索。如果rx在任何地方都不匹配,則返回-1。

int lastIndexOf(QRegExp &rx, int from = -1) constint lastIndexOf(const QRegularExpression &re, int from = -1) constint lastIndexOf(const QRegularExpression &re, int from, QRegularExpressionMatch *rmatch) const

remove

移除字符串中符合正則表達式rx的匹配,并返回對該字符串的引用。

QString &remove(const QRegExp &rx)QString &remove(const QRegularExpression &re)

replace

將字符串中符合正則表達式rx就替換為after字符串,并返回對該字符串的引用。

QString &replace(const QRegExp &rx, const QString &after)QString &replace(const QRegularExpression &re, const QString &after)

section

將字符串由正則表達式來分割字段序列。

QString section(const QRegExp &reg, int start, int end = -1, QString::SectionFlags flags = SectionDefault) constQString section(const QRegularExpression &re, int start, int end = -1, QString::SectionFlags flags = SectionDefault) const

split

將字符串拆分為正則表達式rx匹配的子字符串,并返回這些字符串的列表。

QStringList split(const QRegExp &rx, QString::SplitBehavior behavior = KeepEmptyParts) constQStringList split(const QRegularExpression &re, QString::SplitBehavior behavior = KeepEmptyParts) const

splitRef

將字符串拆分為正則表達式rx匹配的子字符串引用,并返回這些字符串的列表。

QVector<QStringRef> splitRef(const QRegExp &rx, QString::SplitBehavior behavior = KeepEmptyParts) constQVector<QStringRef> splitRef(const QRegularExpression &re, QString::SplitBehavior behavior = KeepEmptyParts) const

看完上述內容,你們掌握QString中怎么利用正則表達式操作接口的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

卢龙县| 迭部县| 定远县| 察隅县| 兴仁县| 嘉义市| 喜德县| 安陆市| 杭州市| 祁连县| 宜良县| 东兴市| 壶关县| 登封市| 崇礼县| 连江县| 会泽县| 板桥市| 岢岚县| 德清县| 当阳市| 独山县| 北流市| 双柏县| 汕头市| 通江县| 梅州市| 邵东县| 来宾市| 敦化市| 宁阳县| 密山市| 雷山县| 南乐县| 平顺县| 武威市| 文登市| 苏尼特右旗| 长葛市| 化隆| 翁牛特旗|