Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2014
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. (#w{6}|/[/(+^-]|$w+|)*.
  2.  
  3. ( # Capturing Group (1)
  4. # # "#"
  5. w # <ASCII letter, digit or underscore>
  6. {6} # (repeated {6} times)
  7. | # OR
  8. / # "/"
  9. [/(+^-] # Character Class [/(+^-]
  10. | # OR
  11. $ # "$"
  12. w # <ASCII letter, digit or underscore>
  13. + # (one or more)(greedy)
  14. | # "|"
  15. ) # End of Capturing Group (1)
  16. * # (zero or more)(greedy)
  17. . # Any character except line break
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement