要替換Java字符串中的第一個字符,您可以使用substring
方法和字符串連接符+
來實現。以下是一個簡單的示例代碼:
public class Main {
public static void main(String[] args) {
String str = "hello";
char newChar = 'H'; // 新的第一個字符
// 替換第一個字符
str = newChar + str.substring(1);
System.out.println(str); // 輸出結果為 "Hello"
}
}
在上面的示例中,我們首先定義了一個字符串str
,然后定義了一個新的字符newChar
作為要替換的第一個字符。接著,我們使用substring
方法獲取字符串從第二個字符開始的子字符串,并將其與新字符連接起來,從而實現了替換第一個字符的效果。最后,我們輸出替換后的字符串結果。