js使用正则从https://lgg.datdapp.com/storage/image/20230927.png提取出/storage/image/20230927.png
时间: 2023-10-06 07:10:51 浏览: 72
正则函数提取图片地址
可以使用正则表达式来提取出指定的字符串。在JavaScript中,可以使用`match()`方法来实现。
```javascript
const url = "https://lgg.datdapp.com/storage/image/20230927.png";
const pattern = /\/storage\/image\/\d+\.png/;
const result = url.match(pattern);
if (result) {
console.log(result[0]); // 输出:/storage/image/20230927.png
} else {
console.log("未找到匹配的字符串");}
```
阅读全文