0

我有一个这样的字符串生成器

"abc efg abc hij abc klm"

我想从这个字符串中获取最后一个 abc 以及最后一个匹配之后的数据。如何在java中做到这一点?

4

2 回答 2

1
 StringBuilder text = new StringBuilder("abc efg abc hij abc klm");
 int index = text.lastIndexOf("abc");
 String substring = text.toString().substring(index);
于 2012-09-04T11:19:19.610 回答
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));
}
于 2012-09-04T11:20:26.050 回答