字符串截取固定长度的方法(C#)

字符串截取固定长度的方法(C#)
#region 字符串截取函数
  public static string CutString(string inputString,int len)
  {


   ASCIIEncoding ascii =  new ASCIIEncoding();
   int tempLen=0;
   string tempString="";
   byte[] s = ascii.GetBytes(inputString);
   for(int i=0;i<s.Length;i++)
   {
    if((int)s[i]==63)
    {
     tempLen+=2;
    }
    else
    {
     tempLen+=1;
    }
               
    try
    {
     tempString+=inputString.Substring(i,1);
    }
    catch
    {
     break;
    }

    if(tempLen>len)
     break;
   }
   //如果截过则加上半个省略号
   byte[] mybyte=System.Text.Encoding.Default.GetBytes(inputString);
   if(mybyte.Length>len)
    tempString+="…";


   return tempString;
  }
  #endregion

 

注:ASCIIEncoding 在system.text;

posted on 2004-08-16 14:57  kary  阅读(1725)  评论(0编辑  收藏  举报

导航