我有一组特定的重复文本块。它们具有动态文件名和动态消息。对于我要提取消息的每个文件名。
Filename: dynamicFile.txt
Property: some property to neglect
Message: the message I want
Time: dynamicTime
我想在消息之后提取部分,这将是:the message I want
.
我所拥有的:以下内容将匹配文件名和时间之间的任何内容。
(?<=Filename: %myFileVar%)(?s)(.*)(?=Time:)
而%myFileVar%
动态文件变量是我将使用的表达式。
现在我需要找到一种方法来省略文件名之后的任何内容,直到消息部分。在这里我不得不省略:
Property: some property to neglect
Message:
怎么可能做到这一点?