检查字符串的格式
检查字符串是否符合此格式 #-#####
所需的最小 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
^\d-\d{5}$
将是仅匹配此模式的正则表达式。^\d-\d{5}$
would be a regexp that matches only this pattern.