c#截取字串

來源:互聯網
上載者:User

用C#寫的字串截取函數

public string CutStr(string sInString,int iCutLength){
    if(sInString==null || sInString.Length==0 || iCutLength<=0) return "";
    int iCount=System.Text.Encoding.GetEncoding("Shift_JIS").GetByteCount(sInString);
    if(iCount>iCutLength){
        int iLength=0;
        for(int i=0;i<sInString.Length;i++){
            int iCharLength=System.Text.Encoding.GetEncoding("Shift_JIS").GetByteCount(new char[]{sInString[i]});
            iLength += iCharLength;
            if(iLength==iCutLength){
                sInString=sInString.Substring(0,i+1);
                break;
            }else if(iLength>iCutLength){
                sInString=sInString.Substring(0,i);
                break;
            }
        }
    }
    return sInString;
}

在ASP.NET或C#中,怎麼截取字串

protected   string   CutString(string   str,int   length)  
  {  
    string   newString="";  
    if(str!="")  
    {  
      if(str.Length>length)  
      {  
        newString=str.Substring(0,length)+"...";  
      }  
      else  
      {  
        newString=str;  
      }      
    }  
    return   newString;  
  }  
   
  然後在綁定的時候:  
  <%#   CutString(DataBinder.Eval(Container.DataItem,"NewTitle").ToString(),5)   %>

 

asp.net(c#) datelist DataGrid 中截取字串加"..." 和 滑鼠放上去字元全部顯示

前台
<asp:TemplateColumn HeaderText="綁定網址">
            <HeaderStyle HorizontalAlign="Center" Width="100px"></HeaderStyle>
            <ItemStyle HorizontalAlign="Center"></ItemStyle>
            <ItemTemplate>
             <FONT face="宋體">
              <asp:HyperLink id="HyperLink1" runat="server" Target=_blank text='<%# PartSubString(DataBinder.Eval(Container.DataItem,"url").ToString())%>' NavigateUrl='<%# DataBinder.Eval(Container.DataItem,"url")%>' ToolTip='<%# DataBinder.Eval(Container.DataItem,"url")%>'>
              </asp:HyperLink></FONT>
            </ItemTemplate>
            <FooterStyle HorizontalAlign="Center"></FooterStyle>
           </asp:TemplateColumn>
後台.cs
protected string PartSubString(string s)
  {
   if(s.Length>15)
   {
    return s.Substring(0,15)+"..."; 
   }
   return s;
  }  用C#截取指定長度的中英文混合字串

我們常做的一件事情,就是在文章系統中,截取一定長度的文章標題,超過指定長度,就加“...”

如兩個字串:
string str1 = "中國人要啊abc呀~";
string str2 = "1中國人23456abc呀~";

要截取後,輸出:

str1 = "中國人要...";
str2 = "1中國人2...";

即要把中英文混合的字串,在截取後,長度要一致,即8個位元組的長度(不包括三個點),而且不能出現中文被從中間截斷的情況。於是寫了個方法:

public static string getStr(string s,int l)
    {   
    string temp = s ;
    if (Regex.Replace(temp,"[\u4e00-\u9fa5]","zz",RegexOptions.IgnoreCase).Length<=l)
    {
        return temp;
    }
    for (int i=temp.Length;i>=0;i--)
    {
        temp = temp.Substring(0,i);
        if (Regex.Replace(temp,"[\u4e00-\u9fa5]","zz",RegexOptions.IgnoreCase).Length<=l-3)
        {
            return temp + "";
        }   
    }
    return "";
    }

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.