Author -  Sai gowtham

Get the last 2 digits of a number in Java

In this tutorial, we are going to learn about how to get the last 2 digits of a number in Java.

Note: Strings are sequence of characters, where indexes are zero-based. The last character is in position 0, the second in 1, and index of a last character is string.length()-1 etc.

Get the last 2 digits of a number

To get the last 2 digits of a number, convert the number to a string and call the substring() method on it, by passing the string.length()-2 as a argument.

The substring() method returns the last 2 character of a string then convert the result back to a number to get the last 2 digits.

Note: The string.length()-2 givens index of a second character from the end.

Here is an example:

int price = 4239;
String priceStr = Integer.toString(price);
int lastCharTwoIndex = priceStr.length()-2; // 2nd character index from last
int lastTwoDigits = Integer.parseInt(priceStr.substring(lastCharTwoIndex));
System.out.println(lastTwoDigits);

Output:

39

In the example above, on the first step we have converted the number to a string using the Integer.toString() method.

We have passed the priceStr.length()-2 as argument to the substring() method, so it returns the last 2 characters.

The last step, we used the Integer.parseInt() method to convert it back to a number.

References

Css Tutorials & Demos

How rotate an image continuously in CSS

In this demo, we are going to learn about how to rotate an image continuously using the css animations.

How to create a Instagram login Page

In this demo, i will show you how to create a instagram login page using html and css.

How to create a pulse animation in CSS

In this demo, i will show you how to create a pulse animation using css.

Creating a snowfall animation using css and JavaScript

In this demo, i will show you how to create a snow fall animation using css and JavaScript.

Top Udemy Courses

JavaScript - The Complete Guide 2023 (Beginner + Advanced)
JavaScript - The Complete Guide 2023 (Beginner + Advanced)
116,648 students enrolled
52 hours of video content
$14.99 FROM UDEMY
React - The Complete Guide (incl Hooks, React Router, Redux)
React - The Complete Guide (incl Hooks, React Router, Redux)
631,582 students enrolled
49 hours of video content
$24.99 FROM UDEMY
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
203,937 students enrolled
31.5 hours of video content
$14.99 FROM UDEMY