C#判断字符串是否只有数字和字母组成
C#判断字符串是只有数字和字母组成。
正则表达式 ^[0-9a-zA-Z]+$
string str = "45456gghjhaj"。
C#是一种安全的、稳定的、简单的、优雅的,由C和C++衍生出来的面向对象的编程语言。它在继承C和C++强大功能的同时去掉了一些它们的复杂特性(例如没有宏以及不允许多重继承)。C#综合了VB简单的可视化操作和C++的高运行效率,以其强大的操作能力、优雅的语法风格、创新的语言特性和便捷的面向组件编程的支持成为.NET开发的首选语言。
C#是面向对象的编程语言。它使得程序员可以快速地编写各种基于MICROSOFT .NET平台的应用程序,MICROSOFT .NET提供了一系列的工具和服务来最大程度地开发利用计算与通讯领域。
2017-07-12
遍历一下字符串中每个字符就行了
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _00054_练习23
{
class Program
{
static void Main(string[] args)
{
//C#判断字符串是否只有数字和字母组成
string str = Console.ReadLine();
bool isnumchar = false;
for (int i = 0; i < str.Length; i++)
{
if ((str[i] >= 'a' && str[i] <= 'z') || (str[i] >= 'A' && str[i] <= 'Z') || (str[i] >= '0' && str[i] <= '9'))
{
isnumchar = true;
}
else
{
isnumchar = false;
break;
}
}
if (isnumchar == true)
{
Console.WriteLine("字符串由仅字母和数字组成");
}
else
{
Console.WriteLine("字符串不是仅由字母和数字组成");
}
Console.ReadKey();
}
}
}
string str = "45456gghjhaj";
//数字或字母
if (System.Text.RegularExpressions.Regex.IsMatch(str, "^[0-9a-zA-Z]+$"))
{
System.Diagnostics.Debug.WriteLine("是符合要求字符");
}
else System.Diagnostics.Debug.WriteLine("不是符合要求的字符");
//必须包含数字和字母
if (System.Text.RegularExpressions.Regex.IsMatch(str, "^(?![0-9]+$)(?![a-zA-Z]+$)[0-9a-zA-Z]+$"))
{
System.Diagnostics.Debug.WriteLine("是符合要求字符");
}
else System.Diagnostics.Debug.WriteLine("不是符合要求的字符");