如何在记事本++中删除两个斜杠之间的一些数字

How to remove some Number between two Slash in notepad++

我有这样的文档,我需要在记事本++中删除/ /之间的数字

    /554301/5e687cfh36825344e915e
  /557040/756dj4405g376c0dd3c2f
  /567600/287650cf27sdc77d5c73a
  /566270/1fefd5w12345l89aa776d
  /581080/09742m02568n481669da4
  /629500/e4fa1234567aejhtre81a

为此:

5e687cfh36825344e915e
756dj4405g376c0dd3c2f
287650cf27sdc77d5c73a
1fefd5w12345l89aa776d
09742m02568n481669da4
e4fa1234567aejhtre81a

如果notepad++支持用正则表达式查找和替换,你可以找到/\d+/并用替换它(没有)。

Notepad++ 支持 Regular Expressions,因此您可以使用它。

按照以下步骤操作,

  1. 在记事本++中按 CTRL+F window。
  2. 转到 Replace 选项卡。
  3. 在底部,select Regular Expression
  4. Find What 字段中,键入 /\d+/ 并将 Replace With 字段留空。
  5. 单击 Replace All