正则匹配多行任意字符
([\w\W]*)
例子:
const str= `
pages: [
'a',
'b',
'c'
],
windows: {
}
`
str.replace(/([\w\W]*)/,'any')
([\w\W]*)
例子:
const str= `
pages: [
'a',
'b',
'c'
],
windows: {
}
`
str.replace(/([\w\W]*)/,'any')