gpt4 book ai didi

java - 按路径拆分正则表达式

转载 作者:行者123 更新时间:2023-12-04 04:42:06 26 4
gpt4 key购买 nike

如果我有这个:

thisisgibberish  1234 /hello/world/
more gibberish 43/7 /good/timing/
just onemore 8888 /thanks/mate

Java String.split() 方法中的正则表达式是什么来获取每行的路径?

即。
[0]: /hello/world/
[1]: /good/timing/
[2]: /thanks/mate


myString.split("\/[a-zA-Z]") 

导致每个/h、/w、/g、/t 和/m 发生 split 。

我将如何编写正则表达式以每行仅拆分一次,同时仅捕获路径?

提前致谢。

最佳答案

为什么 split ?我认为在这里进行比赛更好,请尝试以下表达式:

(?<=\s)(/[a-zA-Z/])+

Regex101 Demo

关于java - 按路径拆分正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18727830/

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