gpt4 book ai didi

javascript - 拆分以@符号开头的多个单词

转载 作者:行者123 更新时间:2023-11-30 12:54:52 25 4
gpt4 key购买 nike

var test = "Hello all, this is a message and i want to mention @john, @smith and @jane...";

而我想要得到的是:

var result = ["john", "smith", "jane"];

我可以使用字符串中的最后一个用户名,但不能使用所有用户名。我可以使用正则表达式或其他字符串函数。

谢谢。

最佳答案

似乎不可能使用单个正则表达式:

var result = test.match(/@\w+/g).join('').match(/\w+/g);

您可能需要处理正则表达式什么也找不到的情况:

var result = test.match(/@\w+/g);
result = result ? result.join('').match(/\w+/g) : [];

关于javascript - 拆分以@符号开头的多个单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19569209/

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