Mask的正则表达式=“h:mm tt” MaskType=“日期时间”

发布于 2024-11-13 08:22:52 字数 111 浏览 1 评论 0原文

有太多资源令人困惑,许多用户评论说这不起作用等。

任何人都可以给我一个完美的正则表达式,用于 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迷爱 2024-11-20 08:22:59

如果您想匹配这样的内容: Mask="h:mm tt" MaskType="DateTime"

这是它的正则表达式:

Mask="(1[0-2]|[0-9]):([0-5][0-9]) (am|pm)" MaskType="(.+?)"

您的匹配将包含:

  1. 的小时
  2. 分钟
  3. AM/PM

MaskType您 应在问题中指定您要匹配的内容。

If you want to match something like this: Mask="h:mm tt" MaskType="DateTime"

This is a regex for it:

Mask="(1[0-2]|[0-9]):([0-5][0-9]) (am|pm)" MaskType="(.+?)"

Your match will contain:

  1. hours
  2. minutes
  3. AM/PM
  4. value of MaskType

You should specify in the question what you want to match for.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文