又写了个灰常简单的- -不用正则表达式的方法。。。- static void Main(string[] args)
- {
- Console.WriteLine("Please input your e-mail,I will check it :");
- string mail = Console.ReadLine();
- if (mail.IndexOf("@") > 0)//indexof的作用是查找字串中指定字符或字串首次出现的位置,返首索引值。
- {
- if (mail.IndexOf(".") > mail.IndexOf("@"))//如果"."出现在"@"的后面,那么就对啦~
- {
- Console.WriteLine("RIGHT!");
- }
- }
- else
- {
- Console.WriteLine("WRONG!");
- }
- Console.ReadKey();
- }
复制代码 希望能帮到你 |