在Java中,indexOf
函數用于查找字符串中子字符串的第一個匹配項的索引。如果找不到子字符串,則返回-1。以下是indexOf
的一些替代方案:
lastIndexOf
:此函數查找子字符串在字符串中最后一次出現的索引。如果找不到子字符串,則返回-1。
String str = "Hello, world!";
int index = str.lastIndexOf("world"); // 返回 7
contains
:此函數檢查字符串是否包含指定的子字符串。如果包含,則返回true
,否則返回false
。
String str = "Hello, world!";
boolean containsWorld = str.contains("world"); // 返回 true
split
:此函數使用指定的分隔符將字符串分割成一個字符串數組。如果字符串不包含分隔符,則返回包含原始字符串的單個元素數組。
String str = "Hello,world!";
String[] parts = str.split(","); // 返回 ["Hello", "world!"]
substring
:此函數返回字符串的子字符串。如果開始索引大于結束索引,則拋出IllegalArgumentException
。
String str = "Hello, world!";
String subStr = str.substring(0, 5); // 返回 "Hello"
equals
:此函數比較兩個字符串是否相等。如果相等,則返回true
,否則返回false
。
String str1 = "Hello, world!";
String str2 = "Hello, world!";
boolean areEqual = str1.equals(str2); // 返回 true
根據您的需求,可以選擇適當的替代方案。