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

![[手游] 三网H5小游戏【少年仙路】WIN系服务端+Linux手工服务端+详细搭建教程](https://cdn.jxasp.com:9143/image/20260615/136BC33AA47EB0D84E878835A8B38FDB.png)

















