Hacker News new | ask | show | jobs
by elchief 3373 days ago
`x` mode and DEFINE can your friends. Example

  (?xi)
  (?(DEFINE)
  
    (?<year> \d{4} )  # I'm a comment
  
    (?<brand> honda|toyota )
  
    (?<model> crx|prius )
  )
...later...

  ((?&year)) ((?&brand)) ((?&model))