20 lines
511 B
Java
20 lines
511 B
Java
// strings/IntegerMatch.java
|
|
// (c)2016 MindView LLC: see Copyright.txt
|
|
// We make no guarantees that this code is fit for any purpose.
|
|
// Visit http://OnJava8.com for more book information.
|
|
|
|
public class IntegerMatch {
|
|
public static void main(String[] args) {
|
|
System.out.println("-1234".matches("-?\\d+"));
|
|
System.out.println("5678".matches("-?\\d+"));
|
|
System.out.println("+911".matches("-?\\d+"));
|
|
System.out.println("+911".matches("(-|\\+)?\\d+"));
|
|
}
|
|
}
|
|
/* Output:
|
|
true
|
|
true
|
|
false
|
|
true
|
|
*/
|