Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想要一个验证字符串的正则表达式以确保它的格式
xxx/xx
wherex是一个数字,并且/是一个文字斜线。我应该如何编写一个可以使用服务器端 C# 验证此格式的正则表达式?
x
/
这应该适合你:
\d{3}/\d{2}
只是为了将来,如果您有任何正则表达式问题,您可以随时在这里编写并检查您自己的问题:
正则表达式