///
/// 时间有0;00;00 的 隐藏
///
///
///
public static string CutString(string str)
{
string s = "0:00:00";
try
{
if (str.Contains("0:00:00"))
{
return str.Replace(s, "");
}
else
{
return str;
}
}
catch (Exception)
{
return ("...");
}
}