checkstring.java

来自「JAVA中文站成立已经五年多了」· Java 代码 · 共 20 行

JAVA
20
字号
class CheckString {
 
    public static void main(String[] arguments) {
        String str = "Nobody ever went broke by buying IBM";
        System.out.println("The string is: " + str);
        System.out.println("Length of this string: "
            + str.length());
        System.out.println("The character at position 5: "
            + str.charAt(5));
        System.out.println("The substring from 26 to 32: "
            + str.substring(26, 32));
        System.out.println("The index of the character v: "
            + str.indexOf('v'));
        System.out.println("The index of the beginning of the "
            + "substring \"IBM\": " + str.indexOf("IBM"));
        System.out.println("The string in upper case: "
            + str.toUpperCase());
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?