Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java String Exercises: 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 a number of Unicode code points in the specified text range of a String.

Sample Solution:

Java Code:

public class Exercise4 {

 public static void main(String[] args) {
  
    String str = "w3rsource.com";
    System.out.println("Original String : " + str);
        
    // codepoint from index 1 to index 10
    int ctr = str.codePointCount(1, 10);
        
    // prints character from index 1 to index 10
    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

Visualize Java code execution (Python Tutor):


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.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe