gpt4 book ai didi

javascript - 正则表达式 - 获取引号之间的字符

转载 作者:行者123 更新时间:2023-11-30 10:25:22 28 4
gpt4 key购买 nike

我有以下字符串。我可以使用什么 reg ex 来仅获取电子邮件地址或双引号之间出现的任何内容?

'E11000 duplicate key error index: app-dev.users.$email_1  dup key: { : "testuse@example.net" }'

最佳答案

你可以使用这个正则表达式:

/"([^"]+)"/

测试:

s='E11000 duplicate key error index: app-dev.users.$email_1  dup key: { : "testuse@example.net" }';
var email = s.match(/"([^"]+)"/)[1];
//=> testuse@example.net

关于javascript - 正则表达式 - 获取引号之间的字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19844686/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com