检查字符串的格式

发布于 2024-10-06 19:11:48 字数 351 浏览 1 评论 0原文

检查字符串是否符合此格式 #-##### 所需的最小 C# 代码量是多少(1 个数字、一个破折号,然后再是 5 个数字)。

在我看来,正则表达式可以快速完成此操作(再次,我希望我知道正则表达式)。

因此,这是一个示例:

public bool VerifyBoxNumber (string boxNumber)
{
   // psudo code
   if (boxNumber.FormatMatch("#-#####")
      return true;
   return false;
}

如果您知道可以使上述比较起作用的真实代码,请添加答案。

What is the smallest amount of C# possible to Check that a String fits this format #-##### (1 number, a dash then 5 more numbers).

It seems to me that a regular expression could do this quick (again, I wish I knew regular expressions).

So, here is an example:

public bool VerifyBoxNumber (string boxNumber)
{
   // psudo code
   if (boxNumber.FormatMatch("#-#####")
      return true;
   return false;
}

If you know real code that will make the above comparison work, please add an answer.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

请恋爱 2024-10-13 19:11:48
private static readonly Regex boxNumberRegex = new Regex(@"^\d-\d{5}$");

public static bool VerifyBoxNumber (string boxNumber)
{
   return boxNumberRegex.IsMatch(boxNumber);
}
private static readonly Regex boxNumberRegex = new Regex(@"^\d-\d{5}$");

public static bool VerifyBoxNumber (string boxNumber)
{
   return boxNumberRegex.IsMatch(boxNumber);
}
青春有你 2024-10-13 19:11:48
return Regex.IsMatch(boxNumber, @"^\d-\d{5}$");
return Regex.IsMatch(boxNumber, @"^\d-\d{5}$");
朦胧时间 2024-10-13 19:11:48

^\d-\d{5}$ 将是仅匹配此模式的正则表达式。

^\d-\d{5}$ would be a regexp that matches only this pattern.

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