public class Test8 { public static void main(String[] args) { String content = ""; String regex = "-?([1-9]+|0)\\d*"; System.out.println(content.matches(regex)); } }
public class Test8 { public static void main(String[] args) { String content = ""; String regex = "-?([1-9]+|0)\\d*"; System.out.println(content.matches(regex)); } }