我希望尽快使用Python正则表达式从.cpp文件中获取第一个#include语句.
例如,
/* Copyright:
This file is
protected
#include
*/
// Include files:
#undef A_MACRO
#include // defines NULL
#include "logger.h"
// Global static pointer used to ensure a single instance of the class.
Logger* Logger::m_pInstance = NULL;
应该返回#include< stddef.h>
我知道一种方法是删除所有注释,然后从剩余的文本中获取第一行.但这似乎不够快,因为它必须通过整个文件.如果我只需要第一个#include语句,是否有任何有效的方法可以使用Python正则表达式来完成它?
[更新1]有几个人提到使用正则表达式不是一个好的解决方案.我理解这不是正则表达式的典型用例.但有没有比正则表达式摆脱领先评论更好的方法?任何建议将不胜感激.
[更新2]感谢您的回答.但似乎没有人我很满意.我的要求很简单:(1)避免遍历整个文件以获得第一行. (2)需要正确处理主要评论.
解决方法:
import sys
import CppHeaderParser
cppHeader = CppHeaderParser.CppHeader("test.cpp")
print("List of includes:")
for incl in cppHeader.includes:
print " %s" % incl
为了它的工作,你应该这样做
pip install cppheaderparser
它输出:
List of includes:
// defines NULL
"logger.h"
当然不是最好的结果,但这是一个开始.
标签:python,c-2,regex
来源: https://codeday.me/bug/20190609/1203663.html