gpt4 book ai didi

javascript - 使用 Regex Javascript 选择第一个目录

转载 作者:行者123 更新时间:2023-11-28 00:35:46 25 4
gpt4 key购买 nike

我有一个格式为./Simple Root/Test/Thing/Test/Thing/ 的输入。如何选择第一个子目录?我的答案是

情况1:简单根

情况 2:/简单根/

我的尝试\/(.+)\/选择了整个字符串!请帮帮我。谢谢!

最佳答案

使用非贪婪版本的.+:.+?:

案例1:

'./Simple Root/Test/Thing/Test/Thing/'.match(/\/.+?\//)
// => ["/Simple Root/"]
'./Simple Root/Test/Thing/Test/Thing/'.match(/\/.+?\//)[0]
// => "/Simple Root/"

案例2:

'./Simple Root/Test/Thing/Test/Thing/'.match(/\/(.+?)\//)
// => ["/Simple Root/", "Simple Root"]
'./Simple Root/Test/Thing/Test/Thing/'.match(/\/(.+?)\//)[1]
// => "Simple Root"

关于javascript - 使用 Regex Javascript 选择第一个目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28524277/

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