c#完美截断字符串代码(中文+非中文)
程序员文章站
2023-12-03 16:07:46
复制代码 代码如下: 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;
}
}
上一篇: Python获取邮件地址的方法