欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

c#完美截断字符串代码(中文+非中文)

程序员文章站 2023-10-23 18:48:41
复制代码 代码如下: public static string truncation(this htmlhelper htmlhelper, string str, int...
复制代码 代码如下:

public static string truncation(this htmlhelper htmlhelper, string str, int len)
{
if (str == null || str.length == 0 || len <= 0)
{
return string.empty;
}
int l = str.length;
#region 计算长度
int clen = 0;
while (clen < len && clen < l)
{
//每遇到一个中文,则将目标长度减一。
if ((int)str[clen] > 128) { len--; }
clen++;
}
#endregion
if (clen < l)
{
return str.substring(0, clen) + "...";
}
else
{
return str;
}
}