Notepad++ 在记事本+;中查找重复项并全部删除+;

Notepad++ 在记事本+;中查找重复项并全部删除+;,notepad++,text-editor,Notepad++,Text Editor,我有多个电子邮件地址。我需要找到并删除所有(包括找到的一个)。这在记事本++中可能吗 示例:epshetsky@test.com, rek4@test.com, rajesh1239@test.com, mohanraj@test.com, sam@test.com, nithin@test.com, midhunvintech@test.com, karthickgm27@test.com, rajesh1239@test.com, mohanraj@test.com, nithin@test

我有多个电子邮件地址。我需要找到并删除所有(包括找到的一个)。这在记事本++中可能吗

示例:
epshetsky@test.com,
rek4@test.com,
rajesh1239@test.com,
mohanraj@test.com,
sam@test.com,
nithin@test.com,
midhunvintech@test.com,
karthickgm27@test.com,
rajesh1239@test.com,
mohanraj@test.com,
nithin@test.com,

我需要像这样的结果

epshetsky@test.com,
rek4@test.com,
sam@test.com,
nithin@test.com,
midhunvintech@test.com,
karthickgm27@test.com,


如何使用记事本++?

您需要textFX插件。然后,只需按照以下说明进行操作:

Paste the text into Notepad++ (CTRL+V). ...
Mark all the text (CTRL+A). ...
Click TextFX → Click TextFX Tools → Click Sort lines case insensitive (at column)
Duplicates and blank lines have been removed and the data has been sorted alphabetically.

就我个人而言,如果可以更改行的顺序,我会使用sort-I-u source>dest而不是notepad++

  • 使用编辑->行操作->按字典顺序升序对行进行排序
  • 执行查找/替换操作:
    • 查找内容:
      ^(.*\r?\n)\1+
    • 替换为:(无,留空)
    • 选中左下角的正则表达式
    • 单击“全部替换”
  • 工作原理:排序将重复项放在彼此后面。查找匹配一行
    ^(.*\r?\n)
    ,并在
    \1
    中捕获该行,然后继续并尝试在第一次匹配后查找一次或多次(
    +
    )。这样的重复块(如果存在)将被替换为零

    \r?\n
    应该能够很好地处理Windows和Unix的行尾。

    您可以使用

    单击TextFX→ 单击TextFX工具→ 单击排序行不区分大小写(在列处) 重复项和空行已删除,数据已按字母顺序排序

    如上所述。但是,我这样做是因为我需要用空行替换重复的行,而不仅仅是删除按字母顺序排序的行:

    REPLACE:
    ((^.*$)(\n))(?=\k<1>)
    
    by
    
    $3
    
    致:


    我就是这样做的,因为我特别需要这些行。

    您只需编辑->行操作->删除重复行即可

    您可以找到并用空字符串替换所有行,从而将它们全部删除,然后手动写回一行。如果找到重复的行,重复线程所说的@AdrianHHH可能会重复,请将其保留为单行。但在我的案例中,如果发现任何重复行,我需要删除所有重复行。OK@James123错误的重复行。您是否检查了有关堆栈溢出的其他问题?您对
    [notepad++]删除重复项的搜索显示了什么?您好,非常感谢!这是非常有用的。但是,如果最后两行上有重复的行,则不起作用。@Shark可能最后一行不以换行结束?
    \r?\n
    表示换行符,因此换行符是匹配的一部分。(尝试在最后一行后按Return键,使其以换行结束。)
    Shorts
    Shorts
    Shorts
    Shorts
    Shorts
    Shorts Two Pack
    Shorts Two Pack
    Signature Braces
    Signature Braces
    Signature Cotton Trousers
    Signature Cotton Trousers
    Signature Cotton Trousers
    Signature Cotton Trousers
    Signature Cotton Trousers
    Signature Cotton Trousers
    Signature Cotton Trousers
    Signature Cotton Trousers
    Signature Cotton Trousers
    Signature Cotton Trousers
    Signature Cotton Trousers
    
    Shorts
    
    Shorts Two Pack
    
    Signature Braces
    
    
    
    
    
    
    
    
    
    
    Signature Cotton Trousers