使用正则表达式在 C# 中验证 FQDN
我用 C# 编写了以下模式来验证从用户收到的 FQDN:
(`?=^.{1,254}$)(^(?:(?!\d+\.)[a-zA-Z0-9_\-]{1,63}\.?)+(?:[0-9a-zA-Z]{1,})$)
我希望允许用户输入以下 FQDN:
<name>.<letter><digit>
例如“aa.a1”。对于“aa.a1”,我的正则表达式将 FQDN 检测为无效,而对于“aa.1a”,它将其检测为有效。有谁知道为什么?
I wrote the following pattern in C# to validate a FQDN received from a user:
(`?=^.{1,254}$)(^(?:(?!\d+\.)[a-zA-Z0-9_\-]{1,63}\.?)+(?:[0-9a-zA-Z]{1,})$)
I want to allow the user to enter the following FQDN:
<name>.<letter><digit>
such as "aa.a1". For "aa.a1" my regex detects the FQDN as invalid, and for "aa.1a" it detects it as valid. Does anyone know why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将字符串加载到
Uri 中,而不是使用正则表达式
并使用不同的方法和属性来确定它是否是 FQDN。Instead of using a RegEx, you can load the string into a
Uri
and use the different methods and properties to figure out if it is a FQDN.我什至不打算尝试解码那个巨大的正则表达式,请使用 Uri.IsWellFormedUriString 方法代替。这已经满足了您的要求。
I'm not going to even try to decode that huge regex, use the Uri.IsWellFormedUriString method instead. That already does what you are looking for.