Wednesday, May 10, 2017

Java: If a string contains a number

If all you need to know is whether the string has a number in it or not, the code below should serve your purpose.

String str = "Great1Holoday!";
boolean hasNumber = str.matches(".*\\d.*");

However, if you need to know which position in the string is a number, the following code should help.

int position = 0;
for (int i=0; i < str.length(); i++) {
      if (Character.isDigit(str.charAt(i))) {
            position = i;
            break;
      }
}

---------------------------------------------------------------------------------------------------------------

                        
If you have ever asked yourself these questions, this is the book for you. What is the meaning of life? Why do people suffer? What is in control of my life? Why is life the way it is? How can I stop suffering and be happy? How can I have a successful life? How can I have a life I like to have? How can I be the person I like to be? How can I be wiser and smarter? How can I have good and harmonious relations with others? Why do people meditate to achieve enlightenment? What is the true meaning of spiritual practice? Why all beings are one? Read the book free here.

No comments:

Post a Comment