C#正则检测字符串是否字母数字混编的方法
程序员文章站
2023-11-24 19:14:52
本文实例讲述了c#正则检测字符串是否字母数字混编的方法。分享给大家供大家参考。具体如下:
using system.text;
using system.tex...
本文实例讲述了c#正则检测字符串是否字母数字混编的方法。分享给大家供大家参考。具体如下:
using system.text; using system.text.regularexpressions; public static class stringextensions { public static bool isalphanumeric(this string source) { regex pattern = new regex("[^0-9a-za-z]"); return !pattern.ismatch(source); } } // example usage class program { static void main(string[] args) { string teststring = console.readline(); if (teststring.isalphanumeric()) console.writeline("yep!"); else console.writeline("nope!"); console.readkey(); // wait for key before exiting } }
希望本文所述对大家的c#程序设计有所帮助。
上一篇: C#实现异步发送邮件的方法
下一篇: C#读取命令行参数的方法