Hi, Currently I am working on a regex that should accomodate input as 123456789 (space characters can be multiple) - (space characters can be multiple) 22343434343 So its a hypen separated range, that has to have a combination of digits and space characters (space characters can be zero or any number of times.) I have got a regex like this [0-9]{0,15}\\s*-\\s*[0-9]{0,15}\\s* ...