正則收集器

  1. 匹配回覆/nb@/nb:這種亂碼字符,然
str.replace(/回覆\/nb@\/nb:/ig, '')
  1. 匹配[文字]文字[文字]括號,但願分別獲得文字裏面的東西
let regex = /\[.*?]/g
let arr= str.match(regex) // ['文字', '文字']
  1. 消除字符中的html
let val = val.replace(/<[^>]+>/g, '')
相關文章
相關標籤/搜索