将行与匹配的第一个字段合并我有一个长文本文件,其中包含以下格式的行:
第一组
any|word،some other word،more word
any word|word2،other word،more word،more
any text|word4،some word،other word
第 2 组
Line contain any
line contain any word
line contain any text
并希望将其转换为
any|some text،some other text،more text|Lines contain any
any word|text،other text،more text،more|lines contain any word
any text|word4،some word،other word|lines contain any text
是否可以使用 Regex 在 Notepad++ 中执行此操作?
答案1
使用正则表达式这是不可能的。
最有可能的是,您需要一个用 Python 等语言编写的脚本来执行此操作。