Skip to content
大纲

图片链接地址

验证图片链接地址,图片格式 可按需增删,必须包含 http/https

语法

js
import { imgUrlReg } from 'warbler-js';
const result = imgUrlReg(value);

参数

  • value (String) : 待验证字符串。

返回值

Boolean : 是否通过验证,true 通过验证, false 没有通过验证。

源码

js
const imgUrlReg = (value) => {
  const reg = /^https?:\/\/(.+\/)+.+(\.(gif|png|jpg|jpeg|webp|svg|psd|bmp|tif))$/i;
  return reg.test(value);
};

例子

js
import { imgUrlReg } from 'warbler-js';
const result1 = imgUrlReg('http://www.warblerfe.top/wc.png');
const result2 = imgUrlReg('https://www.warblerfe.top/wc.png');
const result3 = imgUrlReg('www.warblerfe.top/wc.png');

console.log(result1); // true
console.log(result2); // true
console.log(result3); // false

添加版本

1.2.0

Released under the MIT License.