去首尾空格
Posted yuguangyuan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了去首尾空格相关的知识,希望对你有一定的参考价值。
string & trim(string &s){ if(s.empty()){ return s; } s.erase(0,s.find_first_not_of(" ")); s.erase(s.find_last_not_of(" ")+1); return s; }
以上是关于去首尾空格的主要内容,如果未能解决你的问题,请参考以下文章