Remove last character from C++ string

后端 未结 10 1257
慢半拍i
慢半拍i 2021-01-29 19:50

How can I remove last character from a C++ string?

I tried st = substr(st.length()-1); But it didn\'t work.

10条回答
  •  [愿得一人]
    2021-01-29 20:25

    str.erase( str.end()-1 )

    Reference: std::string::erase() prototype 2

    no c++11 or c++0x needed.

提交回复
热议问题