10 2011 档案
摘要:我们在做程序的的时候经常要处理用户输入,作为我们的主要语言中文,经常会出现全角、半角的问题,这会在查询时给我们带来很多麻烦。代码如下:中文处理扩展Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->publicstaticvoidExample(stringuserInput){stringsbc=userInput.ToSBC();//转全角//具体操作,如存入数据库stringdbc=userInput.ToDBC();//转半角//具体操作
阅读全文
摘要:可以查到常用的20000多个汉字的。方法二Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->privatestaticstringToChineseSpell(stringstrText){if(strText==null||strText.Trim().Length==0){return"";}//汉字拼音首字母列表本列表包含了20902个汉字StringBuildersbChineseFirstPY=newStringB
阅读全文