Check If a String Contains Any Digits Using Java

preview_player
Показать описание
Check If a String Contains Any Digits Using Java

Greetings, today we are here with another Java tutorial. In this tutorial we shall be looking at how to check if a string contains at least one digit. This can be handy for validating certain user input like names, where numbers are usually not expected.

Regex used in this Java tutorial: ".*\\d+.*"

Thanks for watching this Java tutorial on how to check if a string contains any digits using Java.

Check If a String Contains Any Digits Using Java
Рекомендации по теме
Комментарии
Автор

How can I make sure it has both letters and numbers in the string?

VibeClubVids