Trim last character from a string

后端 未结 14 1407
谎友^
谎友^ 2020-11-29 23:59

I have a string say

\"Hello! world!\" 

I want to do a trim or a remove to take out the ! off world but not off Hello.

14条回答
  •  盖世英雄少女心
    2020-11-30 00:34

    The another example of trimming last character from a string:

    string outputText = inputText.Remove(inputText.Length - 1, 1);
    

    You can put it into an extension method and prevent it from null string, etc.

提交回复
热议问题