w3resource

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:

Flowchart: Java String  Exercises - Count a number of Unicode code points in the specified text range of a String

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.



Follow us on Facebook and Twitter for latest update.