Java | String.charAt(index)| 从字符串中按索引获取字符

String.charAt()函数是String类的库函数,用于从字符串中获取/检索特定字符。其中,索引从0开始,到String.lenght-1结束。

例如,如果存在字符串“ Hello”,则其索引将从0开始到4结束。

注意:如果您尝试超出范围访问字符,则会生成异常StringIndexOutOfBoundsException。因此,在字符串中使用索引时要小心。

范例1:

在此示例中,存在由“ Hello world!”初始化的字符串。并且我们必须访问其07字符。

public class Example1

{

public static void main (String[] args) throws java.lang.Exception

{

String msg = "Hello world!";

System.out.println("Character at 0th index: "+ msg.charAt(0));

System.out.println("Character at 7th index: " + msg.charAt(7));

}

}

输出结果

    Character at 0th index: H

    Character at 7th index: o

以上是 Java | String.charAt(index)| 从字符串中按索引获取字符 的全部内容, 来源链接: utcz.com/z/338021.html

回到顶部