W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
您可以使用charAt()方法從String對(duì)象中獲取特定索引處的字符。索引從零開(kāi)始。
下面的代碼打印索引值和字符在“W3CSCHOOL.CN"字符串中的每個(gè)索引處:
public class Main { public static void main(String[] args) { String str = "W3CSCHOOL.CN"; // Get the length of string int len = str.length(); // Loop through all characters and print their indexes for (int i = 0; i < len; i++) { System.out.println(str.charAt(i) + " has index " + i); } } }
上面的代碼生成以下結(jié)果。
測(cè)試String對(duì)象是否為空。空字符串的長(zhǎng)度為零。
有三種方法可以檢查空字符串:
以下代碼顯示如何使用三種方法:
public class Main { public static void main(String[] args) { String str1 = "Hello"; String str2 = ""; // Using the isEmpty() method boolean empty1 = str1.isEmpty(); // Assigns false to empty1 boolean empty2 = str2.isEmpty(); // Assigns true to empty1 // Using the equals() method boolean empty3 = "".equals(str1); // Assigns false to empty3 boolean empty4 = "".equals(str2); // Assigns true to empty4 // Comparing length of the string with 0 boolean empty5 = str1.length() == 0; // Assigns false to empty5 boolean empty6 = str2.length() == 0; // Assigns true to empty6 } }
要將字符串的內(nèi)容轉(zhuǎn)換為小寫(xiě)和大寫(xiě),請(qǐng)分別使用toLowerCase()和toUpperCase()方法。
String str1 = new String("Hello"); // str1 contains "Hello" String str2 = str1.toUpperCase(); // str2 contains "HELLO" String str3 = str1.toLowerCase(); // str3 contains "hello"
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: