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.
有人可以建议如何在 textmate 中进行此搜索和替换。我想我需要一个正则表达式(但我对正则表达式知之甚少!)
我想将所有这些子弹图像更改为 GIF...
子弹1.png
变成
子弹1.gif
我希望数字是通配符
The regular expression:
bullet-(\d+).png
The replacement:
bullet-$1.gif