3
Python中有一個非常有用的函數strip()。在C++中的任何類似的?C++到Python的strip()中的類似功能?
Python中有一個非常有用的函數strip()。在C++中的任何類似的?C++到Python的strip()中的類似功能?
沒有什麼內置的;我曾經使用類似以下的東西:
template <std::ctype_base::mask mask>
class IsNot
{
std::locale myLocale; // To ensure lifetime of facet...
std::ctype<char> const* myCType;
public:
IsNot(std::locale const& l = std::locale())
: myLocale(l)
, myCType(&std::use_facet<std::ctype<char> >(l))
{
}
bool operator()(char ch) const
{
return ! myCType->is(mask, ch);
}
};
typedef IsNot<std::ctype_base::space> IsNotSpace;
std::string
trim(std::string const& original)
{
std::string::const_iterator right = std::find_if(original.rbegin(), original.rend(), IsNotSpace()).base();
std::string::const_iterator left = std::find_if(original.begin(), right, IsNotSpace());
return std::string(left, right);
}
它工作得很好。 (我現在有一個更復雜的版本,可以正確處理UTF-8。)
http://stackoverflow.com/questions/352055/best-algorithm-to-strip-leading-and-trailing-spaces-in -c – Veger 2012-02-20 09:28:55
可能的重複[什麼是修剪std :: string的最佳方法](http://stackoverflow.com/questions/216823/whats-the-best-way-to-trim-stdstring) – 2012-02-20 09:36:17
可能的重複[ Python的條帶字符串](http://stackoverflow.com/questions/1038824/python-strip-a-string) – Marcin 2012-02-20 09:36:27