gpt4 book ai didi

JavaScript。如何从字符串中提取 URI 编码的电子邮件?

转载 作者:行者123 更新时间:2023-11-28 18:05:38 25 4
gpt4 key购买 nike

var string = 'https://opt.portal.co.uk/index/stepregistration/Username/test%40test.es/nextstep/1/lang/es?kmi=K54Nv1RdlV71hhiLEdPg0UZ0%3D&_ga=1.217245974.18890806.1485212';

电子邮件的编码方式如下test%40test.es

使用 JavaScript(无 jQuery)获取此电子邮件地址的方法是什么?

最佳答案

您可以使用以下方式完成此操作:

var string = 'https://opt.portal.co.uk/index/stepregistration/Username/test%40test.es/nextstep/1/lang/es?kmi=K54Nv1RdlV71hhiLEdPg0UZ0%3D&_ga=1.217245974.18890806.1485212';
var email = decodeURIComponent(string).match(/\w+@\w+\.\w+/g)[0];
console.log(email);

关于JavaScript。如何从字符串中提取 URI 编码的电子邮件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42720962/

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