Match number : Digit Number « Regular Expressions « Java






Match number

 

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class Main {
  public static void main(String[] argv) throws Exception {
    Pattern number = Pattern.compile("\\G\\d+\\.?\\d*");

    Matcher mat = number.matcher("this is a test 999");
    System.out.println(mat.find());

  }
}
//false

   
  








Related examples in the same category

1.Check if given string is a number (digits only)
2.Check if given string is numeric (-+0..9(.)0...9)
3.Check if given string is number with dot separator and two decimals
4.Match a single digit
5.Matcher Pattern number
6.reduce To Alpha Numerics with Regex