Advertisement
Anubis_Black

Regex Date Broken Down

Feb 3rd, 2013
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.52 KB | None | 0 0
  1. (
  2.     (
  3.         (
  4.             (
  5.                 [1-9]
  6.             )
  7.             |
  8.             (
  9.                 [0-2][0-9]
  10.             )
  11.             |
  12.             (
  13.                 3[01]
  14.             )          
  15.         )
  16.         \.
  17.         (
  18.             (
  19.                 0[13578]
  20.             )
  21.             |
  22.             (
  23.                 [13578]
  24.             )
  25.             |
  26.             (
  27.                 1[02]
  28.             )
  29.         )
  30.     )
  31.     |
  32.     (
  33.         (
  34.             (
  35.                 [1-9]
  36.             )
  37.             |
  38.             (
  39.                 [0-2][0-9]
  40.             )
  41.             |
  42.             (
  43.                 30
  44.             )
  45.         )
  46.         \.
  47.         (
  48.             (
  49.                 0[469]
  50.             )
  51.             |
  52.             (
  53.                 [469]
  54.             )
  55.             |
  56.             (
  57.                 11
  58.             )
  59.         )
  60.     )
  61.     |
  62.     (
  63.         (
  64.             (
  65.                 [1-9]
  66.             )
  67.             |
  68.             (
  69.                 [0-2][0-9]
  70.             )
  71.         )
  72.         \.
  73.         (
  74.             2|02
  75.         )
  76.     )
  77. )
  78. \.
  79. \d{4}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement