1/**//// <summary> http://www.cnblogs.com/goody9807/archive/2006/09/26/515297.html
2 /// 截取字符串,不限制字符串长度
3 /// </summary>
4 /// <param name=”str”>待截取的字符串</param>
5 /// <param name=”len”>每行的长度,多于这个长度自动换行</param>
6 /// <returns></returns>
7 public string CutStr(string str,int len)
8 { string s=””;
9
10 for(int i=0;i<str.Length ;i++)
11 {
12 int r= i% len;
13 int last =(str.Length/len)*len;
14 if (i!=0 && i<=last)
15 {
16
17 if( r==0)
18 {
19 s+=str.Substring(i-len,len)+”<br>”;
20 }
21
22 }
23 else if (i>last)
24 {
25 s+=str.Substring(i-1) ;
26 break;
27 }
28
29 }
30
31 return s;
32
33 }
34
35
36 /**//// <summary>
37 /// 截取字符串并限制字符串长度,多于给定的长度+。。。
38 /// </summary>
39 /// <param name=”str”>待截取的字符串</param>
40 /// <param name=”len”>每行的长度,多于这个长度自动换行</param>
41 /// <param name=”max”>输出字符串最大的长度</param>
42 /// <returns></returns>
43 public string CutStr(string str,int len,int max)
44 {
45 string s=””;
46 string sheng=””;
47 if (str.Length >max)
48 {
49 str=str.Substring(0,max) ;
50 sheng=””;
51 }
52 for(int i=0;i<str.Length ;i++)
53 {
54 int r= i% len;
55 int last =(str.Length/len)*len;
56 if (i!=0 && i<=last)
57 {
58
59 if( r==0)
60 {
61 s+=str.Substring(i-len,len)+”<br>”;
62 }
63
64 }
65 else if (i>last)
66 {
67 s+=str.Substring(i-1) ;
68 break;
69 }
70
71 }
72
73 return s+sheng;
74
75 }
两个截取字符串的实用方法(超过一定长度自动换行) _asp.net技巧
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 两个截取字符串的实用方法(超过一定长度自动换行) _asp.net技巧
相关推荐
-      对.net framework 反射的反思_asp.net技巧
-      .net3.5和vs2008中的asp.net ajax_asp.net技巧
-      使用asp.net ajax框架扩展html map控件_asp.net技巧
-      asp.net应用程序资源访问安全模型_asp.net技巧
-      photoshop初学者轻松绘制螺旋漩涡特效_photoshop教程
-      photoshop通道结合图层模式抠狗尾巴草_photoshop教程
-      web.config详解+asp.net优化_asp.net技巧
-      asp.net中多彩下拉框的实现_asp.net技巧