PHP如何删除文件名下划线后的最后部分
文件名类似于 whatever_test_123234545.gif
。
删除最后一个下划线及其后的所有字符和数字但不删除点扩展名的最简单方法是什么。
换句话说,我希望 whatever_test_123234545.gif
看起来像 whatever_test.gif
。文件名可以包含随机数量的下划线。我只想删除 .ext
之前的最后一部分。
A filename looks like whatever_test_123234545.gif
.
What is the easiest way to remove the last underscore followed by all characters and numbers after it but not the the dot extension.
In other words i want whatever_test_123234545.gif
to look like whatever_test.gif
. A filename can have a random number of underscores. I just want to remove the last part before .ext
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这将删除最后一个下划线和
.
之间的所有内容。如果文件名没有.
或没有_
它不会更改文件名:并且要实际重命名文件:
This will remove everything between the last underscore and the
.
. If the filename does't have a.
or doesn't have an_
it will not change the filename:And to actually rename the file:
下面的代码将替换 .其中 XXX 是任意数字。仅当 XXX 是数字时才会替换。
The below code will replace the last _XXXXXX before the . where XXX is any number.It will replace only if XXX is a number.
这一个将替换 之前的最后一个 _XXXXXX。其中 XXX 是任意字符串。
This one will replace the last _XXXXXX before the . where XXX is any string.