如何创建一个可以匹配行首以及以下所有以制表符开头的行的正则表达式?例如
not keyword ;
not this line ;
keyword and random text ;
this line ;
this line ;
and this line ;
not keyword ;
我希望能够从 '^keyword' 开始匹配到 'and this line ;'
谢谢你。
编辑。我正在尝试为我不需要的节点删除 Maya 的 MEL 代码。实际代码如下所示,带有多行带有制表符缩进的 setAttr。
createNode mentalrayOptions ......... ;
setAttr .............. ;
我将整个文本加载到 1 个变量中
with open( 'path/to/file', 'r') as content_file:
content = content_file.read()
我尝试的正则表达式似乎正确地找到了起点,但我无法正确地找到终点。它要么匹配 1 行,根本不匹配任何内容,要么匹配到文件末尾。
match = re.search( r'(^createNode mentalrayOptions)(.*\n)(^\t)' ,content, flags=re.DOTALL)