我收到了以下问题。
String string1 = "The ice cold ice-cream";
String string2 = "phone";
String string3 = "";
int p = string1.indexOf("ice",8);
string3 = string1.substring(0, p + 1);
string3 = string3 + string2.toUpperCase();
我似乎无法获得第二和第三个值。
子串和int p
让我很困惑。
任何人都可以帮助解决问题并解释如何解决这个问题。
感谢。
答案 0 :(得分:6)
string3的第一个值是一个空字符串。
现在p是" ice"的指数在string1发生在第8个索引之后。所以p是13(你可以自己计算)。
string3的第二个值是从第0个索引到第(13 + 1)个索引的string1。或者string1从0到第14个索引。那就是
"The ice cold i" // note the 14th index is not included
最后,string3的第三个值是前面的string3和大写字母中的string2。这是
"The ice cold i" + "PHONE" or simply "The ice cold iPHONE"
如果您在使用String方法时遇到问题,请查看http://docs.oracle.com/javase/7/docs/api/java/lang/String.html