gpt4 book ai didi

javascript - 如何解析JS用户名?

转载 作者:行者123 更新时间:2023-12-03 10:17:08 25 4
gpt4 key购买 nike

我的字符串是:

"@john @jerry @kerry hello world"

我的目标是获得一个数组:

["john","jerry","kerry", "hello world"];

事实上@是用户名的标记,最后一个数组项是字符串的其余部分。

有什么想法吗?

最佳答案

您可以获取字符串的其余部分,然后您可以提取用户并将最后一个字符串附加到数组中。

var data = "@john @jerry @kerry hello world";
// get rest of the string
var lastString = data.match(/ \w+/g).join('').trim();
// get users
var array = data.match(/@\w+/g).join('').split('@');
array = array.slice(1,array.length);
// add rest of string to end of array
array.push(lastString);

var data = "@john @jerry @kerry hello world";
// get rest of the string
var lastString = data.match(/ \w+/g).join('').trim();
// get users
var array = data.match(/@\w+/g).join('').split('@');
array = array.slice(1,array.length);
// add rest of string to end of array
array.push(lastString);

alert(array);

关于javascript - 如何解析JS用户名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29816309/

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