notepad ++在这种情况下如何使用正则表达式?

时间:2017-09-03 14:42:32

标签: regex notepad++

我有以下记事本++行:

{{1}}

我想在“移动”之后添加+965,所以它将成为我的联系人,手机,+ 96590902030等。

怎么做?我尝试失败了,我已经尽力了。

谢谢你, 问候。

2 个答案:

答案 0 :(得分:1)

您不需要正则表达式来实现您的目的。

在要替换的Notepad ++中,按 Ctrl + H 打开“替换”菜单。

然后使用Mobile,轻轻替换Mobile,+965

Find: Mobile,

Replace: Mobile,+965

答案 1 :(得分:0)

  

使用Regex

     

第1步:打开Notepad++,按 Ctrl + F

     

第2步:现在,在Find内输入\w*Mobile,

     

第3步:并点击Find All in Opened Documents搜索结果。

- :搜索REGEXCH RESULE: -

enter image description here

  

第4步:现在按 Ctrl + H ,在Replace With内输入Mobile,+965

     

第5步:现在,点击Replace All

<强>输出:

enter image description here

  

使用Find and Replace

     

第1步:打开Notepad++,按 Ctrl + H

     

第2步:现在,在Find内输入Mobile,

     

第3步:并在内部Replace With输入:Mobile,+965

     

第4步:现在,点击Replace All

<强>输出:

  

替换前

enter image description here

  

点击Replace All

enter image description here