我有字符串
String path = test1$milestones1$XYZf@image2@@image3@
我想只将字符串test1和XYZ绑定。我怎样才能得到那个子串。 我通过索引使用子字符串。 谢谢,
答案 0 :(得分:-1)
你应该使用正则表达式。正则表达式是在字符串提取中搜索模式或替换您感兴趣的部分的强大工具。
例如,如果要替换句子中包含的所有数字,可以执行以下操作:
Pattern pattern = Pattern.compile("[0-9]*");
Matcher matcher = pattern.matcher("This my card number: 4565 4593 2575 5144");
System.out.println(matcher.replaceAll("*"));
会打印
This my card number: **** **** **** ****
这是一个good tutorial,您可以在其中学习如何使用它。