如何提取最终输出,例如" / testsite / 585-product"使用来自此输入字符串/ Sites / testsite / documentLibrary / 585-product的java regex表达式;
答案 0 :(得分:1)
只需拆分字符串并合并索引2和4:
String s = "/Sites/testsite/documentLibrary/585-product";
String[] components = s.split("/");
String newString = components[2] + "/" + components[4];
System.out.println(newString);
答案 1 :(得分:0)
如果你想查看它,这是正则表达式。
(?:[^\/]*)\/(?:[^\/]*)(.*)
和regex101上的演示https://regex101.com/r/E6w56j/1