I'm not sure Notepad++ is the best tool for this, but using the Power of Regex, we should be able to do it.
Open the replace menu, fill in ([^
]*
)[^
]*
in the "Find what" box and $1
in the "Replace with" box. Then select regular expression for the search mode, click replace all and every second line is deleted.
You can build similar regexes if you want to do something similar. For example, (([^
]*
){a})[^
]*
will replace every nth line if you replace a
by n - 1 and [^
]*
([^
]*
)
will let you keep even lines instead of odd ones.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…