【发布时间】:2017-10-16 17:25:41
【问题描述】:
是否可以删除notepad++ Not Containing中的每一行
a b c d e f g h i j k l m
n o p q r s t u v w x y z
A B C D E F G H I J K L M
N O P Q R S T U V W X Y Z
, . '
像这样:
删除非 ascii
.*[^\x00-\x7F]+.*
删除号码
.*[0-9]+.*
文字:
example
example'
example,
example.
example123
éxample è
[example/+
example'/é,
example,*
exa'mple--
example@
example"
【问题讨论】:
-
@WiktorStribiżew ,我想删除所有包含字母+数字的行,我只想要 letters + , ' . 行
标签: regex notepad++ notepad regex-group