我有一个像这样的字符串生成器
“abc efg abc hij abc klm”
我希望从此字符串中获取最后一个abc以及最后一次匹配后的数据。如何在java中执行此操作?
答案 0 :(得分:1)
StringBuilder text = new StringBuilder("abc efg abc hij abc klm");
int index = text.lastIndexOf("abc");
String substring = text.toString().substring(index);
答案 1 :(得分:0)
如下:
StringBuilder buffer = new StringBuilder();
buffer.append("abc efg abc hij abc klm");
int lastIndex = buffer.lastIndexOf("abc");
if (lastIndex >= 0) {
System.out.println(buffer.substring(lastIndex));
}