获取不带扩展名的文件名,textmade 捆绑编辑器
认为这可能有效:
${TM_FILENAME/(.+?)(\.[^.]*$|$)/}
但它给了我这个错误:
Error Parsing Snippet
line 1:257: expecting regexp options, found ''
有什么提示吗?
Thought this might work:
${TM_FILENAME/(.+?)(\.[^.]*$|$)/}
But it's giving me this error:
Error Parsing Snippet
line 1:257: expecting regexp options, found ''
Any tips?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是切断一般文件扩展名的解决方案
Here a solution to cut off general file extension
我最初的目标是摆脱 .js 扩展名,这就像一个魅力。
My original goal was to get rid of the .js extension, and this works like a charm.