Remove the last three characters from a string

前端 未结 14 1525
南方客
南方客 2021-01-30 15:22

I want to remove last three characters from a string:

string myString = \"abcdxxx\"; 

Note that the string is dynamic data.

14条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-30 15:48

    myString.Substring(myString.Length - 3, 3)
    

    Here are examples on substring.>>

    http://www.dotnetperls.com/substring

    Refer those.

提交回复
热议问题