vote up 0 vote down star

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?

flag
Near duplicate of: stackoverflow.com/questions/263072/… – LFSR Consulting Jan 27 at 18:44
We all know RegEx syntax sucks, but please don't ask questions like this. Worst case scenario is someone comes up with a great, simple, and clear syntax for RegEx and that spans yet another RegEx syntax. – Chris Smith Jan 27 at 18:45
I agree that another mostly similar dialect or syntax might cause more trouble than it's worth, but what if someone came up with something truly useful and with a different enough syntax? Why shouldn't questions about improvement/innovation at least be asked? – VirtuosiMedia Jan 27 at 18:53
The cost/benefit of implementation could be debated if and after a new solution or improvement was found. – VirtuosiMedia Jan 27 at 18:54
Also see stackoverflow.com/questions/264309/… as a practical dupe. – Dave Sherohman Jan 27 at 19:31

closed as exact duplicate by Tomalak, Simucal, Brian Rasmussen, le dorfier Jan 27 at 19:48

8 Answers

vote up -13 vote down

It should look like:

String.Replace("this","that");

Etc, etc, you get the point.

link|flag
This doesn't tackle the regex syntax but rather an implementation. If you wanted to do something complex there, it'd still use the same regex syntax. – Cody Brocious Jan 27 at 18:24
The problem, though, is matching patterns that have a range of possibilities. – VirtuosiMedia Jan 27 at 18:24
@Cody: Protip: It is a joke. Loosen up. – Rich B Jan 27 at 18:24
Someone with a sense of humor? It cannot be! – Rich B Jan 27 at 18:26
vote up 3 vote down

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).

/foo (bar)? .*/

Could be:

'foo ', OptionalGroup('bar'), ' ', ZeroOrMore(AnyChar)

Just a basic example, but what would a complex example look like; would this really be better?

link|flag
That'd be awesome, how bout creating a wrapper for that? :) – Filip Ekberg Jan 27 at 18:25
Good point. Perhaps it all boils down to the question, "What's worth more, brevity or clarity?" – VirtuosiMedia Jan 27 at 18:27
I could see a RegExBuilder class with methods that build the RegEx. Might make a nice exercise for the reader. – JeeBee Jan 27 at 18:32
i'd hate to have to type in my regex's with that verbose syntax.. – Claudiu Jan 27 at 18:36
ewww, not my taste. the beauty of regex is in it's brevity. – annakata Jan 27 at 19:00
show 1 more comment
vote up 0 vote down

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.

link|flag
vote up 2 vote down

no multi-use tokens. ? should mean one and only one thing.

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

Maybe use of constants instead of characters for special things, and some kind of seperator to create breaks in the syntax.

/ABS_START~
    ~WORD_CHAR+~
    ~WORD_BOUND~
    ~SPACE~
    ~NUMERIC{3:5}
    ~'-'~
~ABS_END/NO_CASE,GLOBAL

vs

/^\w+\b\s[0-9]{3:5}\-$/ig
link|flag
But is that an improvement? – Tomalak Jan 27 at 18:53
It's definitely more readable, not necessarily an improvement. – tj111 Jan 27 at 19:53
vote up 5 vote down

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:

<([^\s>])>        # match open tag
(.*)              # match stuff between tags
</\1>             # match closing tag


For what its worth, this guy created a wrapper for doing exactly that, and you have to ask yourself, is this:

Pattern findGamesPattern = Pattern.With.Literal(@"<div")
    .WhiteSpace.Repeat.ZeroOrMore
    .Literal(@"class=""game""").WhiteSpace.Repeat.ZeroOrMore.Literal(@"id=""")
    .NamedGroup("gameId", Pattern.With.Digit.Repeat.OneOrMore)
    .Literal(@"-game""")
    .NamedGroup("content", Pattern.With.Anything.Repeat.Lazy.ZeroOrMore)
    .Literal(@"<!--gameStatus")
    .WhiteSpace.Repeat.ZeroOrMore.Literal("=").WhiteSpace.Repeat.ZeroOrMore
    .NamedGroup("gameState", Pattern.With.Digit.Repeat.OneOrMore)
    .Literal("-->");

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
-->
link|flag
I definitely see your point. – VirtuosiMedia Jan 27 at 19:08
Agreed! Properly commenting is the key! – Bart K. Jan 28 at 14:51
vote up 0 vote down

I highly recommend RegexBuddy to help you parse regex syntax.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.