通过正则表达式查找并替换特定的参考模式

时间:2015-04-18 13:22:54

标签: regex replace find

按时间顺序索引(https://tex.stackexchange.com/questions/239006/index-in-chronological-order-with-a-predefined-non-alphabetical-index-list/239200#239200) 我想替换以下条目(以及我的文档中的更多这些类型),以便(前面的数字,如果存在,加上)前三个字母写在第一个括号中。第二个括号必须以数字,数字开头,后跟其他内容。例子:

\index[bibel]{Psalm!Psalm 102,26}                 => \bibelindex{Psa}{102,26}
\index[bibel]{1. Johannes!1. Johannes 4,16}       => \bibelindex{1Joh}{4,16}
\index[bibel]{Offenbarung!Offenbarung 21,16b}     => \bibelindex{Off}{21,16b}
\index[bibel]{Habakuk!Habakuk 3,17f.}             => \bibelindex{Hab}{3,17f.}
\index[bibel]{Kolosser!Kolosser 4,3-6}            => \bibelindex{Kol}{4,3-6}
\index[bibel]{1. Korinther!1. Korinther 15,20-28} => \bibelindex{1Kor}{15,20-28}
\index[bibel]{1. Korinther!1. Korinther 15,50.51} => \bibelindex{1Kor}{15,50.51}
\index[bibel]{Psalm!Psalm 2,2.7.9.17.19.23}       => \bibelindex{Psa}{2,2.7.9.17.19.23}
\index[bibel]{Lukas!Lukas 21,11.16-19}            => \bibelindex{Luk}{21,11.16-19}
\index[bibel]{Markus!Markus 24,35-37.40-43.45f.}  => \bibelindex{Mar}{24,35-37.40-43.45f.}

是否可以使用单个搜索模式+单个替换模式和正则表达式来一步替换所有示例?

修改

编辑1:我忘了提到我还有其他不应更改的文字:

\index[stichwort]{Begriffe!Zeichen} => \index[stichwort]{Begriffe!Zeichen}
\index[stichwort]{Bilder [wörtl./bildhaft:Gleichnis,Symbol/beides]!Personen!Abraham} => \index[stichwort]{Bilder [wörtl./bildhaft:Gleichnis,Symbol/beides]!Personen!Abraham}

编辑2:我忘了提到,括号内还有ä/ö/ü字符:

\index[bibel]{Römer!Römer 6,14.15}\nobreakword{(Römer 6,14.15)} => \bibelindex{Röm}{6,14.15}\nobreakword{(Römer 6,14.15)}
\index[bibel]{Matthäus!Matthäus 15,29-31}\nobreakword{(Matthäus 15,29-31)} => \bibelindex{Mat}{15,29-31}\nobreakword{(Matthäus 15,29-31)}

编辑3:是否也可以包括在下一行写入数字部分的模式(因为复制粘贴)在文本和数字之间有一个ENTER(空格/许多空白字符),例如:< / p>

\index[bibel]{1. 
Korinther!1. Korinther 15,20-28} => \bibelindex{1Kor}{15,20-28}

\index[bibel]{1. Korinther!1. 
Korinther 15,20-28} => \bibelindex{1Kor}{15,20-28}

\index[bibel]{1. Korinther!1. 
    Korinther 15,20-28} => \bibelindex{1Kor}{15,20-28}

\index[bibel]{1. Korinther!1. Korinther 
        15,20-28} => \bibelindex{1Kor}{15,20-28}

编辑4:

事件虽然正则表达式页面完美有效,但https://regex101.com/r/cP1kT6/2不幸的是有2秒的限制,这对我来说还不够,因为我有3000行的文本和200个条目要替换。

.*!(\d?)(.\s)?(\w{3})\w*\s([\d\w.\-,]*)}\\bibelindex{$2$3}{$4}提供了RegExpEditor(因为我需要一个Windows免费软件)消息:“无效的起始偏移量”和.*{((\d+)(?:\.\s+))?(\w{3}).*?([a-z0-9.,-]+)}给出“索引1附近的无效重复”。

对Windows使用免费软件“Notepad ++”会导致:“查找:无效的正则表达式”

你知道一个在Windows下运行的免费软件,还是一个正常的表达式,它与普通的程序集一起使用正则表达式搜索和替换函数?

1 个答案:

答案 0 :(得分:2)

您可以使用\\index\[bibel\]{((\d+)(?:\.\s+))?(.{3})[\s\S]*?([a-z0-9.,-]+)}查找匹配项。

\\bibelindex{$2$3}{$4}

代替匹配

修改:根据您的编辑1,2和3更新了正则表达式。

注意:如果您要测试多行,可以通过更改右上角的设置来增加regex101上的max execution time

请参阅DEMO