Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的文本文件中每一行的开头都有以下格式的数字:
1: text written .... 2: text written ....
持续到 973 行。 我想删除任何带有空格和冒号的起始数字......如何在 Notepad++ 中使用正则表达式?
您可以使用此模式:
^\d+\s:
如果你可以像这样在它后面有多个空格:
1 : 10 : 100 :
使用此模式:
^\d+\s+:
确保您已检查环绕:
试试这个,它应该工作
^\d+(?:\.\d+)?%$