Java

Java String이 숫자인지 확인

바리새인 2025. 1. 15. 22:35
public boolean isNumeric(String str) {
    return str != null && str.matches("\\d+(\\.\\d+)?");
}