top | item 5265567

Debuggex: A visual regex debugger

255 points| gurug | 13 years ago |debuggex.com | reply

91 comments

order
[+] UnoriginalGuy|13 years ago|reply
This is the best RegEx web-site that I have seen. It is actually quite far ahead of everyone else.

Unfortunately if you don't "understand" RegEx it won't help much. It is more for people who already have it down.

For me I am still stuck in copy/paste land. I could never get my head around the "logic" of RegEx, it just seems completely random and arbitrary.

Plus they re-use the same characters but have multiple meanings (e.g. ^ for NOT and for START).

[+] kgen|13 years ago|reply
I once wrote a website (http://regexone.com) to help people learn regular expressions using practical examples -- maybe you would like to give that a try and see if it helps you in understanding the different regexes a bit more?
[+] tsergiu|13 years ago|reply
Yes, the intention was to help solve those cases where you are staring at your screen because you don't know where the match went wrong.

I'm thinking of doing some tutorials geared towards teaching students in grade school how to use them. I think a visual representation would help significantly.

[+] anigbrowl|13 years ago|reply
Seconded - it's superb. Having the example button for new users of regexes or people who haven't used one in a while is an excellent addition, as are the diagrams.

I find it sort of sad that several people have responded by linking to their preferred (but clearly inferior) Regex pages, which detracts from the accomplishment of this one.

[+] gizmo686|13 years ago|reply
I understand RegEx, but am (almost) completely unable to read it. For me, this site it perfect.

The way I learned RegEx was simply spending 2 work days writing a parser with it. I think the problem is that there is a moment when RegEx suddenly makes sense, and you cannot understand how anyone can be confused by it (even when you yourself were confused just 5 minutes ago).

[+] jacobparker|13 years ago|reply
Regular expression: ( a * )*

String: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaab

This kills the browser.

ADDENDUM:

A good read on executing regular expressions in linear (and thus predictable) time is http://swtch.com/~rsc/regexp/regexp1.html

Many other algorithms have exponential edge cases. This can open yourself to DoS'ing if you accept regular expressions from the user (e.g. a search feature.)

[+] thomasahle|13 years ago|reply
No. While you are correct a DFA is far superior for parsing this specific subset of javascript regex, it does in no way make it ideal for debugging purposes.

1) In the user's program the regex is not going to be run on a dfa (since we are talking about the javascript variation which has back references). It makes more sense to warn the user about bad performance, than making them believe they are safe.

2) A debugger has to be true to the input. If the user wants to debug (a) it doesn't help that the debugger just casually transforms it into a*. That wouldn't make the diagrams fun at all.

3) It is entirely possible that in the future, the author wants to expand the awesome tool to a larger subset of javascript regex. This would probably make it break out of the finite automa space.

I do however agree that it's a pitty how many good regular expressions are run on stupid backtracking systems out there.

[+] tsergiu|13 years ago|reply
Sorry for the delayed response. Spent all day yesterday responding to feedback. The reason this crashes is due to the internal javascript engine.

In order to ensure that my engine (I simulate a kind of NFA) matches what javascript's engine matches, every time I match on my engine, I also try to exact match using javascript's engine. Unfortunately, javascript's engine always uses backtracking, even when it doesn't need to. Obviously this code should have been turned off for production, and I'll fix it on the next push.

To replicate the crash on your own, try typing: 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaab'.match(/^(a)$/) in your console.

[+] albemuth|13 years ago|reply
My personal favourite: http://rubular.com/

Surprised no one brought it up

[+] andrewguenther|13 years ago|reply
As a long time Rubular user, I will be switching to Debuggex.

It just feels right to me. It explains your regex to you, which, in my mind, is a much better way to debug a regex than to supply a large set of test strings.

[+] gojomo|13 years ago|reply
(Obligatory relevant repost:)

My entry into this category:

http://regex.powertoy.org/

Important caveat: it makes use of a hidden Java applet -- so that it can supports the somewhat larger Java regex syntax, doesn't send your data anywhere else for matching, and can hook into the string-probing to animate the process. So dig out whatever browser you use for Java applets (if you still have one) to test.

Regarding the animation, click the 'animate?' link to show the animation step/speed controls. For example, you can watch the regex that tests whether a number is prime (by failing) or composite (by succeeding) via these two animations:

49: http://regex.powertoy.org/?pat=/^1%3F%24|^%2811+%3F%29\1+%24....

47: http://regex.powertoy.org/?pat=/^1%3F%24|^%2811+%3F%29\1+%24....

I really want to get rid of the applet requirement; I might someday cross-compile the JDK7 regex support to JS so that the full syntax and animation can still be supported, without an applet.

[+] japaget|13 years ago|reply
Generally I try these sorts of things out on a small but non-trivial example. Unfortunately it failed, so while this regex debugger shows a great deal of potential, there is still a bit more work to be done. My inputs:

    Regex: TVo[12].\d.* [Aa] ..[^k]
    Test string: TVo1-0:01.0-1:01.0 A Nashville
[+] tsergiu|13 years ago|reply
The current release only supports exact matches. Multiple matches are planned for a future release.

However, if you use the slider to slide to just past the "s" in Nashville, you can see that the end state does indeed light up.

[+] Guillaume86|13 years ago|reply
Looks like it's looking for full match (^regex$),

Just use: TVo[12].\d.* [Aa] ..[^k].* and it works

[+] DEinspanjer|13 years ago|reply
Very nice. I'd recommend making the text to match field a text area and doing line based matches.

When I need to haul out the big guns, I load up RegexBuddy in a Wine bottle and dump a screenfull of text into it along with the regex to figure out where I went wrong.

They have a very different way of visualizing the step by step, but both are great tools.

[+] tsergiu|13 years ago|reply
The text to match field is a text area; it will auto-expand as you type into it.

However, only exact matches are supported for the first release. I wanted to get user feedback before I built any more features. I think I have an intuitive way to visualize findAll() type matches.

[+] ajacksified|13 years ago|reply
This is awesome! The "random examples" is a nice touch. The visualization is great.
[+] ulrikrasmussen|13 years ago|reply
This is really cool! One thing that would be really awesome would be if you added a way to switch between disambiguation strategies. At the moment, it seems like the default strategy is greedy parsing (i.e. the "Perl way"). For instance, when matching the string "ab" against (ab)(b?) the first group matches "a" while the second matches "b". With the POSIX strategy, the first group will match "ab" and the second will match the empty string.

I think these subtle differences leads to a lot of confusion when users are not aware that the underlying implementation is different from what they are used to.

[+] tsergiu|13 years ago|reply
There will be support for different flavors of regexes in an upcoming release.
[+] martin_|13 years ago|reply
This is incredible - good job. What flavors of regex do you plan to support
[+] greggman|13 years ago|reply
Not bad. Have you thought about supporting a much larger string area? The re editor in Slickedit lets me paste multiple lines of text and see what parts get matched by the regex which is super useful for searching and replacing code and also very useful for multi-line matches.

http://www.slickedit.com/demo/high/RegexEvaluator/RegexEvalu...

[+] tsergiu|13 years ago|reply
Yup, it just didn't make it into the first release. Will definitely be in a future release.
[+] ericcholis|13 years ago|reply
Regex is one of my weak points that I've always wanted to fix. I think this just might be the tool that accomplishes that.
[+] tsergiu|13 years ago|reply
Great to hear that :) Let me know if there's any features I can add that would make them less confusing for you.
[+] benth|13 years ago|reply
Nice. It looks like beginning and end of string anchors are included by default. Is there any way to turn that off?
[+] michaelt|13 years ago|reply
Why not just put a .* at the start and end of your regexp?

Unless you want to do that match-across-newlines witchcraft.

[+] tsergiu|13 years ago|reply
Not in this release. It's exact matches only for now.
[+] spankalee|13 years ago|reply
This is really awesome, and it's immediately going into my batbelt bookmark folder.

One quick UI note: The reference table is much easier to read if the lines are left-aligned. With centering and two columns, it's hard to tell at first which descriptions the escape sequences belong to.

[+] jebblue|13 years ago|reply
This makes regex fun, I could actually see myself relying on it more. Not sure if I'm not writing them every day if I'll remember a year from now what \dd does but now I have a good site to go to to remember again. Nice site.
[+] tsergiu|13 years ago|reply
Thank you. Let me know what I could do to make it even more fun :)
[+] jes|13 years ago|reply
Great, now I have two problems.
[+] tsergiu|13 years ago|reply
But at least you can fix them quickly ;)