第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

正則表達(dá)式文本中包含超過 1 個(gè)大寫字符的所有單詞

正則表達(dá)式文本中包含超過 1 個(gè)大寫字符的所有單詞

holdtom 2024-01-18 10:59:30
如何選擇文本中超過 1 個(gè)大寫字符的所有單詞?我設(shè)法用這一行選擇某個(gè)單詞:(?<![a-z])word(?![a-z])但我不知道如何選擇像這樣的詞SElect, SeLeCt, SelecT, seleCT, selEcT。
查看完整描述

3 回答

?
慕田峪4524236

TA貢獻(xiàn)1875條經(jīng)驗(yàn) 獲得超5個(gè)贊

您可以使用模式來斷言右側(cè)的內(nèi)容是“單詞”,并匹配由可選的大寫和小寫字符包圍的 2 個(gè)大寫字符

(?<![a-zA-Z])[a-z]*[A-Z][a-z]*[A-Z][A-Za-z]*(?![a-zA-Z])

解釋

  • (?<![a-zA-Z])斷言左側(cè)不是 a-zA-Z

  • [a-z]*[A-Z]匹配可選字符 az 后接 AZ 以匹配第一個(gè)大寫字符

  • [a-z]*[A-Z]再次匹配可選字符 az 后跟 AZ 以匹配第二個(gè)大寫字符

  • [a-zA-Z]*匹配可選字符 a-zA-Z

  • (?![a-zA-Z])斷言右側(cè)不是 a-zA-Z

正則表達(dá)式演示


查看完整回答
反對(duì) 回復(fù) 2024-01-18
?
慕容3067478

TA貢獻(xiàn)1773條經(jīng)驗(yàn) 獲得超3個(gè)贊

const regex = /([a-z]*[A-Z]|[A-Z][a-z]*){2,}\b/g

const str = "SEEEEect, SeLeCt, SelecT, seleCT, selEcT select, seleCT, selEcT select, donselect"


const match = str.match(regex)

console.log(match)


查看完整回答
反對(duì) 回復(fù) 2024-01-18
?
子衿沉夜

TA貢獻(xiàn)1828條經(jīng)驗(yàn) 獲得超3個(gè)贊

我還建議一個(gè)完全 Unicode 正則表達(dá)式:

/(?<!\p{L})(?:\p{Ll}*\p{Lu}){2}\p{L}*(?!\p{L})/gu

證明

解釋

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

  (?<!                     look behind to see if there is not:

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

    \p{L}                  any Unicode letter

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

  )                        end of look-behind

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

  (?:                      group, but do not capture (2 times):

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

    \p{Ll}*                 any lowercase Unicode letter (0 or more

                             times (matching the most amount possible))

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

    \p{Lu}                   any uppercase Unicode letter

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

  ){2}                     end of grouping

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

  \p{L}*                   any Unicode letter (0 or more

                           times (matching the most amount possible))

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

  (?!                      look ahead to see if there is not:

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

    \p{L}                   any Unicode letter

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

  )                        end of look-ahead

JavaScript:


const regex = /(?<!\p{L})(?:\p{Ll}*\p{Lu}){2}\p{L}*(?!\p{L})/gu;

const string = "SEEEEect, SeLeCt, SelecT, seleCT, selEcT select, seleCT, selEcT select, donselect";

console.log(string.match(regex));


查看完整回答
反對(duì) 回復(fù) 2024-01-18
  • 3 回答
  • 0 關(guān)注
  • 206 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)