Regexper: Beautiful regexp visualizations
11–20 of 132 posts
Re: Regexper: Beautiful regexp visualizations
#12Neither 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…
Re: Regexper: Beautiful regexp visualizations
#13Re: Regexper: Beautiful regexp visualizations
#14Re: Regexper: Beautiful regexp visualizations
#15Re: Regexper: Beautiful regexp visualizations
#16The parser is failing for regexps containg the caret or dollar chars: http://cl.ly/image/3q0B2X1F3i1H http://cl.ly/image/171f172x0P1M
Re: Regexper: Beautiful regexp visualizations
#17also how do you put in the case insensitive flag?
Re: Regexper: Beautiful regexp visualizations
#18Neither 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…
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)