I would like to create a pattern, which matches all ASCii decimal codes from 58 to 64 (include 58 and 64)
String regExp=""; //ASCii decimal codes 58 - 64
//How to define above regular expression string "regExp"
Pattern pattern = Pattern.compile(regExp);
How to define the regular expression string regExp ?
Here is with raw ASCII numeric values.
Should match all occurrences.