需要正则表达式帮助

需要正则表达式帮助

我有 8XX 行文本,如下所示:

id="**02_item2_02" duration="29" style="**joe"
id="02_item3_01" duration="35.5" style="joseph"

id="和之间的文本style="永远不会相同。我如何替换 和 右侧的任何id=" 内容包括 style=",因此我的所有行看起来都像这样:

id="joseph" bla!bla!bla! text from the script 
id="sara" bla!bla!bla! text from the script 
et cetera. 

答案1

您可以使用这个正则表达式:

(id=").+style="(.+)

并替换为:

$1$2 blah blah blah! text from the script

测试:https://regex101.com/r/Z3zuIR/3

相关内容