Remove last character from C++ string

后端 未结 10 1358
慢半拍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:06

    Simple solution if you are using C++11. Probably O(1) time as well:

    st.pop_back();
    

提交回复
热议问题