gpt4 book ai didi

javascript - 替换字符串中的最后四个字符

转载 作者:行者123 更新时间:2023-12-02 19:54:38 24 4
gpt4 key购买 nike

我想替换图像的最后四个字符。

第一季度)

我想要这个:

http://domain.com/image1.jpg
http://domain.com/image2.png
http://domain.com/image3.gif

成为:

http://domain.com/image1-big.jpg
http://domain.com/image2-big.png
http://domain.com/image3-big.gif

第二季度)

然后我希望能够采取相反的方式(从文件名中删除 -big)

对第一季度和第二季度有什么建议吗?

最佳答案

var str = 'http://domain.com/image1.jpg';

// Embiggen
str.replace(/\.(gif|png|jpg)$/, '-big.$1');

// Unbiggen
str.replace(/-big\.(gif|png|jpg)$/, '.$1');

这有点天真,但应该可行。

关于javascript - 替换字符串中的最后四个字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8817326/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com