限制字符串大小
支持所有版本。
确保你输出的字符串不会过长,当字符串超过你指定的长度你可以用下面办法将其缩短。
复制代码 代码如下:
if ($text.Length -gt $MaxLength)
{
$text.Substring(0,$MaxLength) + '...'
}
else
{
$text
}
时间: 2024-10-06 03:39:50
限制字符串大小
支持所有版本。
确保你输出的字符串不会过长,当字符串超过你指定的长度你可以用下面办法将其缩短。
复制代码 代码如下:
if ($text.Length -gt $MaxLength)
{
$text.Substring(0,$MaxLength) + '...'
}
else
{
$text
}