本文介绍了C#.net上的正则表达式帮助的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好

我需要检查用户输入的有效2格式
格式是
1)在以下事项中:< strInput 1>
2)< strOne 1> v< strTwo 1>

我已经尝试过使用


如果(Regex.IsMatch(_EntitleMent,@?i ^(?: )$))

但没有运气.

一个可以指导我如何为上述字符串格式编写正则表达式吗?

请帮助

Hi All

i need to check user input for valid 2 format
the formats are
1) In the Matter of: <strInput 1>
2) <strOne 1> v <strTwo 1>

i have tryed by useing


if (Regex.IsMatch(_EntitleMent, @"?i^(?:in the matter of: <[a-z]+\d> | <[a-z]+\d> v <[a-z]+\d>)$"))

but no luck.

can one please guide me how can i write a Regular expression for above string format

please help

推荐答案


(in the matter of: <[a-z]+\s\d>)|(<[a-z]+\s\d> v <[a-z]+\s\d>)


这篇关于C#.net上的正则表达式帮助的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 00:22