如何在notepadd ++中基于正则表达式删除内容

时间:2016-09-26 04:34:30

标签: regex notepad++

我需要根据regx替换/删除文本文件中的内容。我想知道我是否可以在记事本++中这样做。

以下是文件内容,我需要删除文件每行*soa_后的所有内容。

_modifycustomerdetails!1.0*soa_9d8e3a58-3d01-40e7-aab7-10c743c78516
_modifycustomerdetails!1.0*soa_8e2301e5-6b8e-496c-bc5d-38234c017cb8

如何更新内容?

1 个答案:

答案 0 :(得分:1)

您可以使用

\*.*\b or  \*.*\ // both cases worked by me

作为替换和

中的FindWhat中的模式
empty space in 

ReplaceWith