Java: Count a number of Unicode code points in the specified text range of a String
Java String: Exercise-4 with Solution
Write a Java program to count Unicode code points in the specified text range of a string.
Sample Solution:
Java Code:
// Define a public class named Exercise4.
public class Exercise4 {
// Define the main method.
public static void main(String[] args) {
// Declare and initialize a string variable "str" with the value "w3rsource.com".
String str = "w3rsource.com";
// Print the original string.
System.out.println("Original String : " + str);
// Count the number of Unicode code points from index 1 to index 10 in the string.
int ctr = str.codePointCount(1, 10);
// Print the count of Unicode code points from index 1 to index 10 in the string.
System.out.println("Codepoint count = " + ctr);
}
}
Sample Output:
Original String : w3rsource.com Codepoint count = 9
Flowchart:
Java Code Editor:
Improve this sample solution and post your code through Disqus
Previous: Write a Java program to get the character (Unicode code point) before the specified index within the String.
Next: Write a Java program to compare two strings lexicographically.Two strings are lexicographically equal if they are the same length and contain the same characters in the same positions.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/java-exercises/string/java-string-exercise-4.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics