📄 main.java
字号:
class Main {
public static void main(String[] args) {
String s = "Madam, I'm Adam";
System.out.println(s.indexOf('\'')); // 8
System.out.println(s.indexOf('\'', 8)); // 8
System.out.println(s.indexOf('\'', 9)); // -1
System.out.println(s.indexOf('a', 100)); // -1
System.out.println(s.indexOf('X')); // -1
// Retrieve the first word.
System.out.println(
s.substring(0, s.indexOf(' '))); // Madam,
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -