Uipath/Vb.net 正则replace isMatch 不区分大小写IgnoreCase

isMatch如:

System.Text.RegularExpressions.Regex.IsMatch(str, "^(\d{2}\/){2}\d{4}$")

Uipath/Vb.net 正则replace isMatch 不区分大小写IgnoreCase_第1张图片

replace如:

System.Text.RegularExpressions.Regex.Replace(str, "(上|下)午", "").Replace(" ", " ").Trim

 

Uipath/Vb.net 正则replace isMatch 不区分大小写IgnoreCase_第2张图片

IgnoreCase如:

System.Text.RegularExpressions.Regex.IsMatch(str, "^[a-z\s]+$", System.Text.RegularExpressions.RegexOptions.IgnoreCase)

 

Uipath/Vb.net 正则replace isMatch 不区分大小写IgnoreCase_第3张图片

你可能感兴趣的:(Uipath,&,Vb.Net)