我试图提取第二个斜杠和第一个=字符之间的子字符串。目前我正在使用split来实现这一点。我如何使用regex来做这件事?先谢谢你了。input -“/test/example=1244 output- example这是我目前使用的:
String test= inputString.split("/")[2].split("=")[0];
agxfikkp1#
你可以在正则表达式中交替使用slash或equals:
String test = "/test/example=1244"; String output = test.split("[/=]")[2]; System.out.println(output);
这将打印:
example
1条答案
按热度按时间agxfikkp1#
你可以在正则表达式中交替使用slash或equals:
这将打印: