gpt4 book ai didi

javascript - 可选的结束捕获组

转载 作者:行者123 更新时间:2023-12-02 14:43:38 26 4
gpt4 key购买 nike

我正在尝试总共三个捕获组,其中最后一个是可选的。我遇到了一个问题,我不确定如何从最后一组中排除最后一个分隔符,并让它查找到最后。

这是我的模式

/(.+)\@(.+)\:(.+)/

这是我的示例字符串

test@hello // => ['test', 'hello']
test@hello:optional // => ['test', 'hello', 'optional']

最佳答案

使用 string.split

string.split(/[:@]/)

[:@] 匹配冒号或 @ 符号,然后 split 函数根据匹配的字符拆分字符串。

var s = 'test@hello:optiona'
alert(s.split(/[@:]/))

var s = 'test@hello:optiona'
alert(s.match(/[^@:]+/g))

关于javascript - 可选的结束捕获组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36783249/

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