帮助 boost::regex 修剪

发布于 11-08 16:54 字数 249 浏览 2 评论 0原文

该正则表达式将在换行符处修剪字符串。
我希望它修剪两端并保留中间的任何换行符。

string s("     Stack \n Overflow    ");
boost::regex expr("^[ \t]+|[ \t]+$");
std::string fmt("");
cout << boost::regex_replace(s, expr, fmt) << endl;

This regex will trim the string at line breaks.
I want it to trim both end only and preserve any line breaks in the middle.

string s("     Stack \n Overflow    ");
boost::regex expr("^[ \t]+|[ \t]+$");
std::string fmt("");
cout << boost::regex_replace(s, expr, fmt) << endl;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

跨年2024-11-15 16:54:23

如果你想让正则表达式匹配开头和后面
输入字符串的末尾(想要保留中间 \n 周围的空格),
\A\z 而不是 ^$ 可能会达到目的。
例如:

boost::regex expr("\\A[ \t]+|[ \t]+\\z");

If you want to make the regular expression match at the beginning and the
end of the input string(want to preserve spaces around the in-between \n),
\A and \z instead of ^ and $ might meet the purpose.
For example:

boost::regex expr("\\A[ \t]+|[ \t]+\\z");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文