gpt4 book ai didi

Java Regex Word Extract 排除特殊字符

转载 作者:行者123 更新时间:2023-11-30 08:09:39 25 4
gpt4 key购买 nike

下面是字符串值

"method" <in> abs
("method") <in> abs
method <in> abs

我只想提取单词 method ,我尝试使用以下正则表达式

"(^[^\\<]*)"它也包括特殊字符

上述正则表达式的 O/p

"method"
("method")
method

我的预期输出

method
method
method

最佳答案

^\\W*(\\w+)

您可以使用它并抓取 group 1capture 1。查看演示。

https://regex101.com/r/sS2dM8/20

关于Java Regex Word Extract 排除特殊字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32307694/

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