首页 > 编程 > C# > 正文

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

2020-01-24 03:41:33
字体:
来源:转载
供稿:网友
复制代码 代码如下:

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;
}
}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表