如何删除“)”后面的单词。一行一行?

问题描述 投票:0回答:1

我有一条文字,想要删除

).

之后的任何单词
A).     Buyers of potato
B).     Buyers of egg
C).     Buyers of gasolin
W). The price meat

期望的输出是:

->A).   
->B).   
->C).   
->W). 

我尝试过使用

\).*
,但这看起来不是一个好主意。

regex notepad++
1个回答
1
投票

使用Notepad++时,您可以执行以下操作:

搜索:

(^\w+\)\.).*

替换为:

->\1

这将捕获第一个捕获组中所需的行开头,并在输出前添加

->

© www.soinside.com 2019 - 2024. All rights reserved.