我有一个这样的字符串生成器
"abc efg abc hij abc klm"
我想从这个字符串中获取最后一个 abc 以及最后一个匹配之后的数据。如何在java中做到这一点?
我有一个这样的字符串生成器
"abc efg abc hij abc klm"
我想从这个字符串中获取最后一个 abc 以及最后一个匹配之后的数据。如何在java中做到这一点?
StringBuilder text = new StringBuilder("abc efg abc hij abc klm");
int index = text.lastIndexOf("abc");
String substring = text.toString().substring(index);
如下:
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));
}