Java 字符串
Java 字符串
字符串用于存储文本。
A String
变量包含用双引号括起来的字符集合:
字符串长度
Java 中的字符串实际上是一个对象,其中包含可以对字符串执行某些操作的方法。例如,可以使用 length()
方法:
例子
String txt = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
System.out.println("The length of the txt string is: " + txt.length());
亲自尝试 »
更多字符串方法
有许多可用的字符串方法,例如 toUpperCase()
和toLowerCase()
:
例子
String txt = "Hello World";
System.out.println(txt.toUpperCase()); // Outputs "HELLO WORLD"
System.out.println(txt.toLowerCase()); // Outputs "hello world"
亲自尝试 »
在字符串中查找字符
这 indexOf()
方法返回指数 字符串中第一次出现指定文本(包括空格)的位置:
例子
String txt = "Please locate where 'locate' occurs!";
System.out.println(txt.indexOf("locate")); // Outputs 7
亲自尝试 »
Java 从零开始计数位置。
0 是字符串中的第一个位置,1 是第二个位置,2 是第三个...