gpt4 book ai didi

c# - 必须同时包含数字和字母的文本框?

转载 作者:太空宇宙 更新时间:2023-11-03 21:50:51 25 4
gpt4 key购买 nike

我想知道有什么方法可以确保用户在文本框中输入数字和字母,如果不提示消息?我有它如下:

if(!Regex.IsMatch(string, @"^[a-zA-Z]+$") && !Regex.IsMatch(string, @"^[1-9]+$"))
{
MessageBox.Show("Please Enter both numbers and letters");
return;
}

所以这里我想说的是,如果字符串中没有字母AND如果字符串中没有数字,则提示错误。但是,如果你输入所有字母(或数字),没有错误提示,所以我想知道是否有办法做到这一点。我研究了这些问题,除了如何允许某些字符外,没有发现任何其他内容。

最佳答案

此时,您的代码显示

Show the message if the string is not entirely made of letters, and not entirely made of numbers

这几乎与您所追求的完全相反。

要修复它,您需要将“not entirely made of”改为“doesn't contain”,将“and”改为“or”:

if(!Regex.IsMatch(string, @"[a-zA-Z]") || !Regex.IsMatch(string, @"[1-9]"))
{
MessageBox.Show("Please Enter both numbers and letters");
return;
}

正则表达式现在只查找单个字母或数字,and 现在是 or

如果您想确保您的输入包含字母或数字,您可以单独执行以下步骤:

if(Regex.IsMatch(string, @"[^a-zA-Z0-9]"))
{
MessageBox.Show("Please Enter only numbers and letters");
return;
}

关于c# - 必须同时包含数字和字母的文本框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14631373/

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