I need to validate and input string client side.
Here is an example of the string:
1:30-1:34, 1:20-1:22, 1:30-1:37,
It's basically time codes for a video.
Can this be done with regex?
Banging my head against the wall...
|
I need to validate and input string client side. Here is an example of the string: 1:30-1:34, 1:20-1:22, 1:30-1:37, It's basically time codes for a video. Can this be done with regex? Banging my head against the wall... |
|||||||
|
|
The following is a simple representation. I have assumed that the string has the exact same form as you have shown. This may be a good starting point for you. I'll improve the regex if you provide more specific requirements.
Explanation (inspired from Tim above)
|
||||
|
|
would probably work; at least it matches your example. But you might need to add a few edge cases to make the rules for matching/not matching clearer.
|
||||
|
|