My string value;
09:00-10:00,12:00-14:30,16:00-18:00
(this string repeats time intervals n times like this)
and I want to find out that a string is in the correct format using pattern matching;
Pattern.matches("<Pattern Here>", stringValue);
is it possible?
I tried;
Pattern.matches("^[0-9:0-9-0-9:0-9,]+$", value);
But doesn't work properly
You can use the following pattern for any given range of 2 times in the form of 24h clock:
Explanation:
HOURLY_TIME_PATTERN
is the pattern required for a single hour in a 24h format (e.g. 16:25)