gpt4 book ai didi

java - 仅将文本留在括号内

转载 作者:行者123 更新时间:2023-11-29 08:31:24 25 4
gpt4 key购买 nike

谁能帮我解决以下问题:我在页面上找到了我正在寻找的元素

WebElement h2 = ol.findElement(By.xpath("../h2" + h2current));
String h2currentShorted = h2.getText();
String h2currentShorted2 = h2currentShorted.substring(24);

现在,原始文本使用多种语言,因此大小(字符数)不同。示例:

Tidligere stillinger ( 1. Jul 2016 - 1. Jul 2017)
Vergangene Gesamtwertung ( 1. Jul 2016 - 1. Jul 2017)
Previous standings ( 1. Jul 2016 - 1. Jul 2017)

以上是三种不同语言的文本。我怎样才能只选择括号内的文本而不是其他任何内容。使用上面的代码,我删除了不需要的字符,但是如果所有语言都有一种解决方案 - 只是在括号内提取文本?提前谢谢你

最佳答案

正如其他人所说,使用正则表达式,但考虑使用组的更优雅的方式。

Pattern p = Pattern.compile(".*\\((.*)\\).*");
Matter m = p.matcher(h2.getText());
String s = m.group(1);

变量 s 将只包含括号内的文本。

关于java - 仅将文本留在括号内,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47866421/

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