使用正则表达式在 C# 中验证 FQDN

发布于 2024-10-16 06:02:29 字数 307 浏览 4 评论 0原文

我用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

瑾兮 2024-10-23 06:02:29

您可以将字符串加载到 Uri 中,而不是使用正则表达式 并使用不同的方法和属性来确定它是否是 FQDN。

Uri uri = new Undri(myFQDN);
string host = uri.Host;
bool isAbsolute = uri.IsAbsoluteUri;

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 uri = new Undri(myFQDN);
string host = uri.Host;
bool isAbsolute = uri.IsAbsoluteUri;
要走干脆点 2024-10-23 06:02:29

我什至不打算尝试解码那个巨大的正则表达式,请使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文