逗号分隔字符串的正则表达式验证
我需要验证并输入客户端字符串。
这是字符串的示例:
1:30-1:34, 1:20-1:22, 1:30-1:37,
它基本上是视频的时间代码。
这可以用正则表达式来完成吗?
我的头撞在墙上...
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...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可能会起作用;至少它符合你的例子。但您可能需要添加一些边缘情况以使匹配/不匹配的规则更清晰。
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.
下面是一个简单的表示。我假设该字符串的形式与您所示的完全相同。这对您来说可能是一个很好的起点。如果您提供更具体的要求,我将改进正则表达式。
解释(受到上面 Tim 的启发)
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)