xxxxxxxxxx
s.length function
xxxxxxxxxx
public class CharacterCount {
public static void main(String[] args) {
String str = "Hello, world!";
int count = 0;
for (int i = 0; i < str.length(); i++) {
// Increment count for each character
count++;
}
System.out.println("Number of characters: " + count);
}
}