匹配重复模式的正则表达式
本文关键字:正则表达式 模式 | 更新日期: 2023-09-27 17:49:21
我想通过使用正则表达式验证c# TextBox中的输入。期望的输入格式如下:CCCCC-CCCCC-CCCCC-CCCCC-CCCCC-CCCCC-C
所以我有六个元素,五个分隔字符,最后一个分隔字符。
现在我的正则表达式匹配5到255字符之间的任何字符:.{5,255}
我需要如何修改它以匹配上面提到的格式?
更新:-
如果你想匹配任何字符,那么你可以使用:-
^(?:[a-zA-Z0-9]{5}-){6}[a-zA-Z0-9]$
解释: -
(?: // Non-capturing group
[a-zA-Z0-9]{5} // Match any character or digit of length 5
- // Followed by a `-`
){6} // Match the pattern 6 times (ABCD4-) -> 6 times
[a-zA-Z0-9] // At the end match any character or digit.
注意:-下面的正则表达式将只匹配你发布的模式:-
CCCCC-CCCCC-CCCCC-CCCCC-CCCCC-CCCCC-C
你可以试试这个regex: -
^(?:([a-zA-Z0-9])'1{4}-){6}'1$
解释: -
(?: // Non-capturing group
( // First capture group
[a-zA-Z0-9] // Match any character or digit, and capture in group 1
)
'1{4} // Match the same character as in group 1 - 4 times
- // Followed by a `-`
){6} // Match the pattern 6 times (CCCCC-) -> 6 times
'1 // At the end match a single character.
未经测试,但我认为这将工作:
([A-Za-z0-9]{5}-){6}[A-Za-z0-9]
对于您的示例,通常将C
替换为您想要的字符类:
^(C{5}-){6}C$
^([a-z]{5}-){6}[a-z]$ # Just letter, use case insensitive modifier
^([a-z0-9]{5}-){6}[a-z0-9]$ # Letters and digits..
试试这个:
^(C{5}-){6}C$
^
和$
分别表示字符串的开始和结束,并确保没有输入额外的字符。