vue replace正则
时间: 2023-11-10 17:04:19 浏览: 112
vue 限制input只能输入正数的操作
Vue中的replace方法可以使用正则表达式进行替换。具体用法如下:
```javascript
// 将字符串中的所有空格替换为'-'
let str = 'hello world'
str = str.replace(/\s+/g, '-')
console.log(str) // 'hello-world'
```
其中,正则表达式`/\s+/g`表示匹配一个或多个空格,`g`表示全局匹配。
阅读全文