如何使用正则表达式进行批量删除

时间:2015-09-06 01:52:32

标签: regex


我有很多传入的电子邮件 我想在记事本中保存所有内容

    checkzone@anagram
    12:56 AM (7 hours ago)

    to me 
    Live => example1@gmail.com | example1

    checkzone@anagram
    6:31 AM (2 hours ago)

    to me 
    Live => example2@gmail.com | example2

    checkzone@anagram
    6:31 AM (1 hours ago)

    to me 
    Live => example3@gmail.com | example3

所以它就像这样

Live => example1@gmail.com | example1
Live => example2@gmail.com | example2
Live => example3@gmail.com | example3

如何删除所有

checkzone@anagram
6:31 AM (1 hours ago)

to me 

使用正则表达式!

问题 使用正则表达式时应该使用什么代码? 请使用demo regex101

1 个答案:

答案 0 :(得分:1)

你可以使用这样的正则表达式:

[\s\S]*?(Live.*$)

使用替换字符串:

$1\n

<强> Working demo

enter image description here