String test = "{helloworld=Text to be filtered}";
我需要得到"要过滤的文字"从上面的字符串。 请帮忙。提前谢谢。
答案 0 :(得分:0)
在这种情况下你可以使用String.split()方法。
String test = "{helloworld=Text to be filtered}";
String testAfterSplit[] = test.split("=");
testAfterSplit[0]
将持有" {helloworld "和
testAfterSplit[1]
将保留值" 要过滤的文字} "
您可以阅读有关拆分here
的更多信息答案 1 :(得分:0)
您可以使用indexOf方法。它重新塑造了你想要的角色的位置。在这种情况下:
int pos = text.IndexOf("=");
String filter = text.substring(pos, text.length());
它从=的位置返回一个字符串到结尾。