介紹QString使用正則操作的接口。
專注于為中小企業(yè)提供成都網(wǎng)站建設(shè)、網(wǎng)站制作服務(wù),電腦端+手機端+微信端的三站合一,更高效的管理,為中小企業(yè)淮安免費做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了超過千家企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設(shè)實現(xiàn)規(guī)模擴充和轉(zhuǎn)變。
Qt 5.0引入QRegularExpression,相比于QRegExp,前者修復(fù)了很多bugs,功能上也是兼容于QRegExp。推薦使用QRegularExpression。
contains
正則表達式rx是否與字符串中的某個地方匹配,匹配返回true,否則返回false。
bool contains(const QRegExp &rx) const bool contains(QRegExp &rx) const bool contains(const QRegularExpression &re) const bool contains(const QRegularExpression &re, QRegularExpressionMatch *match) const
count
返回正則表達式rx在字符串中匹配的次數(shù)。
int count(const QRegExp &rx) const int count(const QRegularExpression &re) const
indexOf
返回字符串中正則表達式rx的第一個匹配項的索引位置,從索引位置向前搜索。如果rx在任何地方都不匹配,則返回-1。
int indexOf(QRegExp &rx, int from = 0) const int indexOf(const QRegularExpression &re, int from = 0) const int indexOf(const QRegularExpression &re, int from, QRegularExpressionMatch *rmatch) const
lastIndexOf
返回字符串中正則表達式rx最后一個匹配項的索引位置,從索引位置向后搜索。如果rx在任何地方都不匹配,則返回-1。
int lastIndexOf(QRegExp &rx, int from = -1) const int lastIndexOf(const QRegularExpression &re, int from = -1) const int 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 ®, int start, int end = -1, QString::SectionFlags flags = SectionDefault) const QString 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) const QStringList split(const QRegularExpression &re, QString::SplitBehavior behavior = KeepEmptyParts) const
splitRef
將字符串拆分為正則表達式rx匹配的子字符串引用,并返回這些字符串的列表。
QVectorsplitRef(const QRegExp &rx, QString::SplitBehavior behavior = KeepEmptyParts) const QVector splitRef(const QRegularExpression &re, QString::SplitBehavior behavior = KeepEmptyParts) const
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。