I don't have any real problems using regex, but for some reason, every time I need it, I find that I have to look at references or cheat sheets and refresh my memory about the syntax. Regex is logical and concise, but it might suffer somewhat in terms of interface, semantics, readability, and (easy) maintainability. I've been trying to think of what I would do to make it easier, but so far I haven't come up with very much that doesn't just encapsulate existing patterns in a function. If you were to replace or improve the regex syntax, what would it look like, how would it work, and why would you make the changes?
|
|
|||||||||||
|
closed as exact duplicate by Tomalak, Simucal, Brian Rasmussen, le dorfier Jan 27 at 19:48 |
|
|
It should look like:
Etc, etc, you get the point. |
||||||||
|
|
|
The use of symbols to denote everything is really the key problem (aside from not having variables and such, at which point the actual underlying regex engine would look totally different).
Could be:
Just a basic example, but what would a complex example look like; would this really be better? |
||||||||||
|
|
|
Any attempt to make it more logical would probably make it more verbose as well, but if you don't mind that then take a look at HaLeX. Haskell is good at this sort of thing. |
||
|
|
|
|
no multi-use tokens. ? should mean one and only one thing. |
||
|
|
|
|
CL-PPCRE has an alternate syntax for regular expressions, as s-expression parse trees. You could equivalently represent regular expressions as YAML or XML, if you were feeling evil. Personally I like the line-noise style of regex because it's very hard to beat in terms of concision and after a long time looking at them, they're not that hard to read or write at all. |
||
|
|
|
|
Maybe use of constants instead of characters for special things, and some kind of seperator to create breaks in the syntax.
vs
|
||
|
|
I'd probably not change the syntax of regex too much. The tried and true way of making readable regular expressionsh as always been to turn on the "ignore whitespace" flag and insert comments:
For what its worth, this guy created a wrapper for doing exactly that, and you have to ask yourself, is this:
Really more readable than this:
<div\s* #open tag
class="game"\s*
id="(?<gameID>\d+)-game" #captures game id
(?<content>.*?) #don't care about anything in between
<!--
gameStatus\s*=\s*(?<gameState>\d+) #captures game state
-->
|
||||
|
|
|
I highly recommend RegexBuddy to help you parse regex syntax. |
|||
|
|
