Caused by: com.some.packge.MyCustomException: blah, blah, blah
我怎样才能得到上面的String的Sub-String呢?
我在下面尝试过,但是在子字符串中也得到了MyCustomException。
mainString.substring(mainString.indexOf("MyCustomException"));
最佳答案
您可以执行以下操作:
mainString = mainString.substring(mainString.indexOf("MyCustomException:") + "MyCustomException:".length());
在执行此操作之前,应检查
String
是否包含MyCustomException:
。关于java - 在给定字符串之后获取子字符串,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35632797/