Java字符串字符出现次数是指在一个字符串中,某个特定字符出现的次数。在Java中,可以使用String.indexOf()方法来计算一个字符在字符串中出现的次数。
public static int countOccurrences(String str, char c) { int count = 0; for (int i = 0; i < str.length(); i++) { if (str.charAt(i) == c) { count++; } } return count; }
上面的代码实现了计算一个字符在字符串中出现的次数,其中str是要处理的字符串,c是要计数的字符。该方法遍历了str中所有的字符,如果当前遍历到的字符和c相同,则count加1。最后返回count即可得到c在str中出现的次数。
您可以使用charAt()方法从String对象中获取特定索引处的字符。索引从零开始。
下面的代码打印索引值和字符在“W3CSCHOOL.CN"字符串中的每个索引处:
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); } } }
上面的代码生成以下结果。
测试String对象是否为空。空字符串的长度为零。
有三种方法可以检查空字符串:
以下代码显示如何使用三种方法:
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 } }
要将字符串的内容转换为小写和大写,请分别使用toLowerCase()和toUpperCase()方法。
String str1 = new String("Hello"); // str1 contains "Hello" String str2 = str1.toUpperCase(); // str2 contains "HELLO" String str3 = str1.toLowerCase(); // str3 contains "hello"
Java数据类型教程 - Java字符串Swtichswitch-expression使用String类型。如果switch-expression为null,则抛出NullPointerExcept...
JavaFX教程 -JavaFX BorderPaneBorderPane布局顶,底,左,右或中心区域中的子节点。每个区域只能有一个节点。BorderPane的顶部...
JavaFX教程 -JavaFX Hello World以下代码显示了如何在JavaFX中创建一个窗口并添加一个按钮控制到它。 它还显示如何处理按钮的点...
JavaFX教程 -JavaFX触摸事件触摸事件允许我们使用触摸屏与JavaFX应用程序交互。import javafx.application.Application;import j...