在Java中字符串查找的形式有以下幾種:
例如:
String str = "Hello, world!";
int index = str.indexOf("world");
System.out.println(index); // 輸出6
例如:
String str = "Hello, world!";
int index = str.lastIndexOf("o");
System.out.println(index); // 輸出8
例如:
String str = "Hello, world!";
boolean contains = str.contains("world");
System.out.println(contains); // 輸出true
例如:
String str = "Hello, world!";
boolean isMatch = str.matches("Hello.*");
System.out.println(isMatch); // 輸出true
例如:
String str = "Hello, world!";
boolean startsWith = str.startsWith("Hello");
boolean endsWith = str.endsWith("world!");
System.out.println(startsWith); // 輸出true
System.out.println(endsWith); // 輸出true
這些方法可以根據具體的需求選擇合適的方式進行字符串查找。