去除C++String的首尾空格

#include <iostream>
#include <string>
using namespace std;

string& trim(string &);

int main() 
{
	string s = "  Hello World!!    ";
	cout << s << " size:" << s.size() << endl;
	cout << trim(s) << " size:" << trim(s).size() << endl;

	return 0;
}

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;
}

去除C++String的首尾空格_第1张图片


备注:

erase函数的原型如下:
(1)string& erase ( size_t pos = 0, size_t n = npos );
(2)iterator erase ( iterator position );
(3)iterator erase ( iterator first, iterator last );
也就是说有三种用法:
(1)erase(pos,n); 删除从pos开始的n个字符,比如erase(0,1)就是删除第一个字符
(2)erase(position);删除position处的一个字符(position是个string类型的迭代器)
(3)erase(first,last);删除从first到last之间的字符(first和last都是迭代器)
erase(position);
相当于截取string前position位的字符。
其他:

字符串操作(String operation)

c_str
得到等效的字符数组
data
得到等效的字符串数据
get_allocator
得到分配器
copy
从字符串中复制字符序列
find
查找字符
rfind
从后向前查找字符
find_first_of
查找某个字符第一次出现的位置
find_last_of
查找某个字符最后一次出现的位置
find_first_not_of
Find absence of character in string 注:英文原意比较准确
find_last_not_of
Find absence of character in string from the end
substr
生成子字符串
compare
比较



你可能感兴趣的:(去除C++String的首尾空格)