使用 boost::regex 更改文件中数据的格式
Posted
技术标签:
【中文标题】使用 boost::regex 更改文件中数据的格式【英文标题】:Change format of data in file using boost::regex 【发布时间】:2015-04-26 14:51:59 【问题描述】:我有文件 output.txt,在文件中我们可以找到类似的内容:
01/01/2015 15:00:00 2222.2222
2222.2222 2222.2222 2222.2222
04/04/2015 15:00:00 2222.2222
我想使用 boost 正则表达式将格式从 DD/MM/RRRR HH:MM:SS
更改为 RRRR-MM-DD HH:MM:SS.000
。但我不知道我应该如何输入模式。
有人使用 boost 正则表达式可以帮助我吗?
【问题讨论】:
我不认为正则表达式是更改日期时间戳格式的正确工具(另请参阅programmers.stackexchange.com/questions/223634/…)。而是将其解析为一种格式的日期时间,然后以任何可能的格式输出都很简单。 好的,但没那么简单,我在想解析文件,逐行获取但是很难用另一种模式替换一种模式 我的回答解决了问题吗? 【参考方案1】:您可以使用这样的代码(改编自 Boost C++ Libraries 的示例):
#include <boost/regex.hpp>
#include <string>
#include <iostream>
int main()
std::string s = "01/30/2015 15:00:00 2222.2222";
boost::regex expr"([0-9]2)\\/([0-9]2)\\/([0-9]4)\\s+([0-9]2):([0-9]2):([0-9]2)\\s+[0-9]4\\.[0-9]4";
std::string fmt"\\3/\\1/\\2 \\4:\\5:\\6.000";
std::cout << boost::regex_replace(s, expr, fmt) << '\n';
A demo of what the regex is doing
【讨论】:
以上是关于使用 boost::regex 更改文件中数据的格式的主要内容,如果未能解决你的问题,请参考以下文章
致命错误 C1083:无法打开包含文件:'boost/regex.hpp':没有这样的文件或目录
尝试使用 makefile 编译 C++ 程序时出现“致命错误:boost/regex.hpp:没有这样的文件或目录”