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.
我正在使用 Sublime Text 在 Windows 上编辑批处理文件。我想删除所有不ECHO以or开头的行REM。我认为这必须通过正则表达式来实现,但我无法弄清楚。有人吗?
ECHO
REM
据我了解,Sublime Text 使用 Python 的正则表达式引擎。
此代码匹配所有不以ECHOand开头的行REM:
^(?!(?:ECHO|REM)).*\s*