获取双引号内的信息



我试图在node.js中获得引号内的信息

例如:

var information = 'Hello "beautiful and amazing" world.'

如何记录" "内部写入的内容?我想得到这个结果:beautiful and amazing

Using regex:

var information = 'Hello "beautiful and amazing" world.'
var regex = /".+"/
var match = information.match(regex)
var res = match?.[0].slice(1, match[0].length - 1)
console.log("Result: " + res)

检查",然后检查任何文本,然后检查另一个"。然后删除"s

相关内容

  • 没有找到相关文章

最新更新