js 正则匹配 网址 www
时间: 2023-02-09 11:15:44 浏览: 667
JS正则匹配URL网址的方法(可匹配www,http开头的一切网址)
5星 · 资源好评率100%
可以使用以下正则表达式匹配网址中包含 "www" 的部分:
```
/www/
```
使用方法为:
```js
let str = "网址 www.baidu.com";
let result = str.match(/www/);
console.log(result);
```
result 为 ["www"]
如果想要匹配整个网址,可以使用:
```js
let str = "网址 http://www.baidu.com";
let result = str.match(/(https?:\/\/)?(www\.)?\w+\.\w+/);
console.log(result);
```
result 为 ["http://www.baidu.com"]
阅读全文