w3resource

Java: Get the character (Unicode code point) before the specified index within the String

Java String: Exercise-3 with Solution

Write a Java program to get the character (Unicode code point) before the specified index within the string.

Sample Solution:

Java Code:

// Define a public class named Exercise3.
public class Exercise3 {
    // Define the main method.
    public static void main(String[] args) {
  
        // Declare and initialize a string variable "str" with the value "w3resource.com".
        String str = "w3resource.com";
        // Print the original string.
        System.out.println("Original String : " + str);
        
        // Retrieve the Unicode code point before the character at index 1 in the string.
        int val1 = str.codePointBefore(1);
    
        // Retrieve the Unicode code point before the character at index 9 in the string.
        int val2 = str.codePointBefore(9);
        
        // Print the Unicode code point representing the character before index 1 in the string.
        System.out.println("Character(unicode point) = " + val1);
        // Print the Unicode code point representing the character before index 9 in the string.
        System.out.println("Character(unicode point) = " + val2);
    }
}

Sample Output:

Original String : w3resource.com                                                                              
Character(unicode point) = 119                                                                                
Character(unicode point) = 99

Flowchart:

Flowchart: Java String  Exercises - Get the character (Unicode code point) before the specified index within the 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) at the given index within the String.
Next: Write a java program to count a number of Unicode code points in the specified text range of a String.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

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://www.w3resource.com/java-exercises/string/java-string-exercise-3.php