Mask的正则表达式=“h:mm tt” MaskType=“日期时间”
有太多资源令人困惑,许多用户评论说这不起作用等。
任何人都可以给我一个完美的正则表达式,用于 Mask="h:mm tt" MaskType="DateTime" 在我的应用程序中使用银光项目
There are so many resources that it is confusing and many are commented with users saying this does not work etc.
can any one please give me a perfect regex for Mask="h:mm tt" MaskType="DateTime" to be used in my silverlight project
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想匹配这样的内容:
Mask="h:mm tt" MaskType="DateTime"
这是它的正则表达式:
您的匹配将包含:
MaskType您 应在问题中指定您要匹配的内容。
If you want to match something like this:
Mask="h:mm tt" MaskType="DateTime"
This is a regex for it:
Your match will contain:
You should specify in the question what you want to match for.