等你,十一月的冷风款款如约而至,尽是点滴的韵致,点点滴滴都是我的凝眸。想你,十一月的叶落纷纷布满角落,全是颗粒的珠链,颗颗粒粒都是我的心忆。爱你,十一月的阳光惨惨敷在脸庞,满是残熠的余辉,残残熠熠都是我的思绪。
两个截取字符串的实用方法(超过一定长度自动换行)
///
/// 截取字符串,不限制字符串长度
///
/// 待截取的字符串
/// 每行的长度,多于这个长度自动换行
///
public string CutStr(string str,int len)
{ string s="";for(int i=0;i 11 {
int r= i% len;
int last =(str.Length/len)*len;
if (i!=0 && i<=last)
{if( r==0)
{
s+=str.Substring(i-len,len)+"";
}}
else if (i>last)
{
s+=str.Substring(i-1) ;
break;
}}
return s;
}
///
/// 截取字符串并限制字符串长度,多于给定的长度+。。。
///
/// 待截取的字符串
/// 每行的长度,多于这个长度自动换行
/// 输出字符串最大的长度
///
public string CutStr(string str,int len,int max)
{
string s="";
string sheng="";
if (str.Length >max)
{
str=str.Substring(0,max) ;
sheng="";
}
for(int i=0;i 53 {
int r= i% len;
int last =(str.Length/len)*len;
if (i!=0 && i<=last)
{if( r==0)
{
s+=str.Substring(i-len,len)+"";
}}
else if (i>last)
{
s+=str.Substring(i-1) ;
break;
}}
return s+sheng;
}
本文ASP.NET两个截取字符串的方法分享到此结束。不做准备的人是准备失败的人!在任何苦难中能发现好的一面!小编再次感谢大家对我们的支持!