Csharp/C#教程:正则表达式匹配c#中的所有资本和下划线分享


正则表达式匹配c#中的所有资本和下划线

我需要找到只有大写字母和下划线的字符串中的所有单词

string str = "ABCD_EFG_LMNO hello world PQR_ST_UVW US Apple PQR__ZYZ PQR__LMN__ZYZ"; string pattern = "[A-Z_]+[_][AZ]+"; 

输出应该只在单词下面

 ABCD_EFG_LMNO PQR_ST_UVW 

使用字符类时,将忽略该顺序。 改为使用组:

 [AZ]+(?:_[AZ]+)+ 

regex101演示

这是你需要的吗?

 string strRegex = @"(?[AZ]+(?:_[AZ]+)+))"; Regex myRegex = new Regex(strRegex, RegexOptions.Multiline); string strTargetString = @"ABCD_EFG_LMNO hello world PQR_ST_UVW US Apple PQR__ZYZ PQR__LMN__ZYZ""" + "nnn"; foreach (Match myMatch in myRegex.Matches(strTargetString)) { if (myMatch.Success) { // Add some displaying code } } 

提示:使用RegExHero for .NET尝试:)

上述就是C#学习教程:正则表达式匹配c#中的所有资本和下划线分享的全部内容,如果对大家有所用处且需要了解更多关于C#学习教程,希望大家多多关注—计算机技术网(www.ctvol.com)!

本文来自网络收集,不代表计算机技术网立场,如涉及侵权请联系管理员删除。

ctvol管理联系方式QQ:251552304

本文章地址:https://www.ctvol.com/cdevelopment/987429.html

(0)
上一篇 2021年12月22日
下一篇 2021年12月22日

精彩推荐