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.
我需要为 FTP 操作编写一些正则表达式,其中作业应该
谁能建议一个防水的表达方式,不要选择以 ABC 和 XYZ 结尾的文件?
我认为这应该可行:[a-zA-Z][\S]*^(ABC|XYZ)但我不能 100% 确定您要求的所有细节。正则表达式应该说的是任何以字母开头的东西,然后有尽可能多的非空白字符,然后不以 ABC 或 XYZ 结尾。
[a-zA-Z][\S]*^(ABC|XYZ)