Home  >  Article  >  Backend Development  >  C# Remove specified characters at the end of a string

C# Remove specified characters at the end of a string

黄舟
黄舟Original
2016-12-27 13:52:282033browse

#region 移除字符串末尾指定字符
      /// <summary> 
      /// 移除字符串末尾指定字符 
      /// </summary> 
      ///<param name="str">需要移除的字符串 
      ///<param name="value">指定字符 
      /// <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

The above is the content of C# to remove the specified characters at the end of the string. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn