Answers for "Returns the number of characters in the String"

2

counting the number of characters in a string java

public static void main(String[] args) {
		int wordCount = 0;
		String word = "hill";
		for (char letter = 'a'; letter <= 'z'; letter++) {
			for (int i = 0; i < word.length(); i++) {
				if (word.charAt(i) == letter) {
					wordCount++;
				}
			}
			if (wordCount > 0) {
				System.out.println(letter + "=" + wordCount);
				wordCount = 0;
			}
		}
	}
Posted by: Guest on January-23-2020
2

python return number of characters in string

# Example usage:
your_string = "Example usage"
len(your_string)
--> 13
Posted by: Guest on November-06-2020

Code answers related to "Returns the number of characters in the String"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language