c++でtrim(先頭と末尾から空白文字を削除する)するのはboost使うと楽
# include <boost/algorithm/string/trim.hpp>
boost::algorithm::trim(some_line);
Go to list of users who liked
More than 5 years have passed since last update.
c++でtrim(先頭と末尾から空白文字を削除する)するのはboost使うと楽
# include <boost/algorithm/string/trim.hpp>
boost::algorithm::trim(some_line);
Register as a new user and use Qiita more conveniently
Go to list of users who liked