#region 移除字符串末尾指定字符
///
/// 移除字符串末尾指定字符
///
///需要移除的字符串
///指定字符
/// 移除後的字符串
public static string RemoveLastChar(string str, string value)
{
int _finded = str.LastIndexOf(value);
if (_finded != -1)
{
return str.Substring(0, _finded);
}
return str;
}
#endregion