แก้ไขตั้งแต่ c ++ 17 บางส่วนของไลบรารีมาตรฐานถูกลบออก โชคดีที่เริ่มต้นด้วย c ++ 11 เรามี lambdas ซึ่งเป็นโซลูชั่นที่เหนือกว่า
#include <algorithm>
#include <cctype>
#include <locale>
// trim from start (in place)
static inline void ltrim(std::string &s) {
s.erase(s.begin(), std::find_if(s.begin(), s.end(), [](int ch) {
return !std::isspace(ch);
}));
}
// trim from end (in place)
static inline void rtrim(std::string &s) {
s.erase(std::find_if(s.rbegin(), s.rend(), [](int ch) {
return !std::isspace(ch);
}).base(), s.end());
}
// trim from both ends (in place)
static inline void trim(std::string &s) {
ltrim(s);
rtrim(s);
}
// trim from start (copying)
static inline std::string ltrim_copy(std::string s) {
ltrim(s);
return s;
}
// trim from end (copying)
static inline std::string rtrim_copy(std::string s) {
rtrim(s);
return s;
}
// trim from both ends (copying)
static inline std::string trim_copy(std::string s) {
trim(s);
return s;
}
ขอบคุณhttps://stackoverflow.com/a/44973498/524503สำหรับการนำเสนอโซลูชั่นที่ทันสมัย
คำตอบเดิม:
ฉันมักจะใช้หนึ่งใน 3 เหล่านี้สำหรับความต้องการของฉัน:
#include <algorithm>
#include <functional>
#include <cctype>
#include <locale>
// trim from start
static inline std::string <rim(std::string &s) {
s.erase(s.begin(), std::find_if(s.begin(), s.end(),
std::not1(std::ptr_fun<int, int>(std::isspace))));
return s;
}
// trim from end
static inline std::string &rtrim(std::string &s) {
s.erase(std::find_if(s.rbegin(), s.rend(),
std::not1(std::ptr_fun<int, int>(std::isspace))).base(), s.end());
return s;
}
// trim from both ends
static inline std::string &trim(std::string &s) {
return ltrim(rtrim(s));
}
พวกเขาค่อนข้างอธิบายตนเองและทำงานได้ดีมาก
แก้ไข : BTW ฉันstd::ptr_fun
มีที่จะช่วยแก้ความกำกวมstd::isspace
เพราะมีคำจำกัดความที่สองที่รองรับสถานที่ นี่อาจเป็นนักแสดงได้เหมือนกัน แต่ฉันมักจะชอบสิ่งนี้ดีกว่า
แก้ไข : เพื่อที่อยู่ความคิดเห็นบางอย่างเกี่ยวกับการยอมรับพารามิเตอร์โดยการอ้างอิงการปรับเปลี่ยนและกลับมา ฉันเห็นด้วย. การใช้งานที่ฉันต้องการจะเป็นสองชุดหนึ่งสำหรับในสถานที่และหนึ่งที่ทำสำเนา ตัวอย่างที่ดีกว่าคือ:
#include <algorithm>
#include <functional>
#include <cctype>
#include <locale>
// trim from start (in place)
static inline void ltrim(std::string &s) {
s.erase(s.begin(), std::find_if(s.begin(), s.end(),
std::not1(std::ptr_fun<int, int>(std::isspace))));
}
// trim from end (in place)
static inline void rtrim(std::string &s) {
s.erase(std::find_if(s.rbegin(), s.rend(),
std::not1(std::ptr_fun<int, int>(std::isspace))).base(), s.end());
}
// trim from both ends (in place)
static inline void trim(std::string &s) {
ltrim(s);
rtrim(s);
}
// trim from start (copying)
static inline std::string ltrim_copy(std::string s) {
ltrim(s);
return s;
}
// trim from end (copying)
static inline std::string rtrim_copy(std::string s) {
rtrim(s);
return s;
}
// trim from both ends (copying)
static inline std::string trim_copy(std::string s) {
trim(s);
return s;
}
ฉันกำลังรักษาคำตอบดั้งเดิมไว้ด้านบน แต่เพื่อบริบทและเพื่อรักษาคำตอบที่ได้รับคะแนนโหวตสูงยังคงมีอยู่