使用正则表达式从字符串中提取子字符串

Extract sub-string from string using regex

我对正则表达式有点陌生,所以我有以下字符串:

[[ChromeDriver: chrome on LINUX (ff108507ea7a3598104c728cc453f299)] -> xpath: /html[1]/body[1]/div[3]/div[1]/header[1]/div[1]/div[1]/div[1]/div[1]/nav[1]/ul[1]/li[1]/a[1]] (class: sf-depth-1 menuparent ext sf-with-ul)

我想知道如何删除 /html 之前的所有内容,所以我得到以下字符串: /html[1]/body[1]/div[3]/div[1]/header[1]/div[1]/div[1]/div[1]/div[1]/nav[1]/ul[1]/li[1]/a[1]] (class : sf-depth-1 menuparent ext sf-with-ul)

我试过了,但没有成功:

Pattern pattern = Pattern.compile("/html.*");
Matcher matcher = pattern.matcher(absoluteXpath);

if (matcher.find()) {
    System.out.println(matcher.group(1));
}

在此处测试:

https://regexr.com/4gff0

不需要正则表达式...只需使用:

String str = "[[ChromeDriver: chrome on LINUX (ff108507ea7a3598104c728cc453f299)] -> xpath: /html[1]/body[1]/div[3]/div[1]/header[1]/div[1]/div[1]/div[1]/div[1]/nav[1]/ul[1]/li[1]/a[1]] (class: sf-depth-1 menuparent ext sf-with-ul)";
str = str.substring(str.indexOf("/html"));