gpt4 book ai didi

C# 正则表达式帮助 - 验证输入

转载 作者:太空狗 更新时间:2023-10-29 23:03:45 29 4
gpt4 key购买 nike

我需要验证用户输入的文本格式:

####-#####-####-###

我可以使用 Regex.Match 执行此操作吗?

最佳答案

我会做这样的事情:

private static readonly Regex _validator = 
new Regex(@"^\d{4}-\d{5}-\d{4}-\d{3}$", RegexOptions.Compiled);
private static bool ValidateInput(string input)
{
input = (input ?? string.Empty);
if (input.Length != 19)
{
return false;
}
return _validator.IsMatch(input);
}

关于C# 正则表达式帮助 - 验证输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4088619/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com