删除 txt 文件中以特定字符开头的文本

Delete text that begin with a specific character in a txt file

我有一个这种格式的 txt 文件(数字列表)

123456
654321
0123456
01564
98789

我想删除所有以 0 开头的行。如何做到这一点?

怎么样:

查找内容:^0.*\R
替换为:NOTHING

不勾选. matches newline