zoukankan      html  css  js  c++  java
  • 提取汉字

    if (textBox1.Text.Trim()!="")
       
    {
                    
    int i=0;
                    
    string strIn=textBox1.Text;
        
    string temp;
        
    byte[] array=new byte[2];
                    textBox2.Text
    ="";
        
    for (i=0;i<strIn.Length;i++)
        
    {
         temp
    =strIn.Substring(i,1);
         array
    =Encoding.Default.GetBytes(temp);
         
    if (array.Length!=1)
         
    {
                            textBox2.Text
    +=temp;
         }

        }

       }
     
    来自:http://community.csdn.net/Expert/topic/4120/4120603.xml?temp=.2487146
    运行通过
  • 相关阅读:
    DDD 领域驱动设计
    IOC 控制反转
    WCF
    Lucene 全文检索引擎
    Redis
    Cache 缓存
    return
    PHP中empty();和isset();的区别.
    sql 简单用语
    关系型数据库
  • 原文地址:https://www.cnblogs.com/jhtchina/p/186678.html
Copyright © 2011-2022 走看看