Live data from Hacker News

Regexper: Beautiful regexp visualizations

regexper.com

11–20 of 132 posts

Re: Regexper: Beautiful regexp visualizations

#12

Neither beautiful nor a visualization really. For the uninitiated, there's an isomorphic relationship between regular expressions (not PCREs which are way more complicated) and finite state automata proving that if you have a regexp you can generate a FSA for it, and visa versa. What we have here is a system that generates a graph of the finite state automaton for any given regular expression. Neat project, misleadin…

The path idea is a great one! If the original dev doesn't add that I may be tempted to try building my own regex tool with these features.

Re: Regexper: Beautiful regexp visualizations

#18

Neither beautiful nor a visualization really. For the uninitiated, there's an isomorphic relationship between regular expressions (not PCREs which are way more complicated) and finite state automata proving that if you have a regexp you can generate a FSA for it, and visa versa. What we have here is a system that generates a graph of the finite state automaton for any given regular expression. Neat project, misleadin…

I disagree. It could look better, but I fail to see how a graph is not a visualization (?)

Quite useful to show junior devs who are usually afraid of RegExp. Example from jQuery/Sizzle's: http://cl.ly/image/321F0E2B222o (^ and $ removed since it's failing to parse)

Post reply on HN