Rubular - a Ruby regular expression editor
21–30 of 41 posts
Re: Rubular - a Ruby regular expression editor
#22I love rubular too. Question though... Why isn't it open source?
What would be gained if it were? I suppose you could run it locally. Come to think of it, that would be nice.
- Learn how a regex editor is built.
- Use a different regex engine (is that possible to swap)? [1]
I'm sure there are more reasons.
1 http://en.wikipedia.org/wiki/Comparison_of_regular_expressio...
Re: Rubular - a Ruby regular expression editor
#23I also like using http://www.gskinner.com/RegExr/ Which I think is Flash/Flash Air... Being able to permalink (which Rubular also does) to examples is a killer feature..I keep trying to convince non-programmers who work with data that they should at least learn regexes to make their life easier
Re: Rubular - a Ruby regular expression editor
#24I also like using http://www.gskinner.com/RegExr/ Which I think is Flash/Flash Air... Being able to permalink (which Rubular also does) to examples is a killer feature..I keep trying to convince non-programmers who work with data that they should at least learn regexes to make their life easier
Ruby uses Oniguruma http://www.geocities.jp/kosako3/oniguruma/
While the average regex will probably work on both, you should know there isn't a 1:1 correlation between the two.
Re: Rubular - a Ruby regular expression editor
#25Re: Rubular - a Ruby regular expression editor
#26And this is why hacker news is terrible.
Karma: 11 / 663 days old
Re: Rubular - a Ruby regular expression editor
#27Re: Rubular - a Ruby regular expression editor
#28Re: Rubular - a Ruby regular expression editor
#29I love rubular too. Question though... Why isn't it open source?
Re: Rubular - a Ruby regular expression editor
#30Earlier quoted context omitted.
What would be gained if it were? I suppose you could run it locally. Come to think of it, that would be nice.
- Yes, run it locally. (Sometimes I want to test against sensitive information) - Learn how a regex editor is built. - Use a different regex engine (is that possible to swap)? [1] I'm sure there are more reasons. 1 http://en.wikipedia.org/wiki/Comparison_of_regular_expressio...
Oniguruma (regex engine in ruby1.9) existed as an external library in the past (1.8) and you can get stuff like re2 for ruby this days[1]