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.
我正在使用 Ant,我想匹配看起来像import package.R;但import package.R.*;不是的字符串import package.Rxxx;
import package.R;
import package.R.*;
import package.Rxxx;
所以我只想为这两个字符使用某种通配符,这是非常具体;的.
;
.
我当前的解决方案使用两种不同的语句
match="import.+?\.R;"
match="import.+?\.R."
但我想将它们合二为一,以提高速度
我不太了解 ant 特定的正则表达式,但如果它支持字符类,那么
match="import.+?\.R[;.]"
应该工作的[;.]意义;或.
[;.]