Live data from Hacker News

Just released a major update for my site. What do you guys think?

regex101.com

71–78 of 78 posts

Re: Just released a major update for my site. What do you guys think?

#71
Well, the redesign looks like it would be much more useful (just from first impressions last time I tried it).

However, this is more of a debugger when you already have some idea how to write a regex to match a particular string. Are there any complete regex builders where you can select components (such as greedy or not, positive or not) when you can't remember the specific syntax?

Re: Just released a major update for my site. What do you guys think?

#73

Earlier quoted context omitted.

FWIW I find your light design inspired by rubular to be visually superior. The community feature is great however I assumed from the name that it would just be a forum, perhaps a different label would help show its utility - maybe "favourite regex"?

Glad you like the design :). Hmm, something like "Regex library" maybe? Unsure of how to word it properly.

Library sounds about right, maybe?

Re: Just released a major update for my site. What do you guys think?

#74
In the quiz, for competitive motivation it would be nice to see if you actually broke the current record on a quiz. Right now, there's no way to tell, whether you just caught up with the current record holder, or whether you've set a new one. ;) Otherwise, great update!

Re: Just released a major update for my site. What do you guys think?

#76
Nice! Just a couple of minor nitpicks:

1. The delay between updating the regex/test text and seeing the result is a little long. I find regex tools much more useful if I can see the results change as I'm typing.

2. I did a simple regex with two capture groups and the second backreference came up red in the matches box. As soon as I see red, I assume there's an error. Might be worth removing those "danger colours" from the list.

Other than that, looking good!

Re: Just released a major update for my site. What do you guys think?

#77
post #55

Earlier quoted context omitted.

I'm not sure I agree it should be default; it's not expected behavior. Either way, there are too many flags to add them all to the quickref, I figured I would just show the most common.

Right now, even café is not matched by \w{4} . If this is what you call expected …

Yes, this is explicitly a tool that uses PCRE via PHP. So I'd expect the behaviour to exactly reflect that of the `preg` suite in PHP... which does not use `u` by default.

Re: Just released a major update for my site. What do you guys think?

#78
post #75

Something that would be very useful, but that I haven't seen in any of these web-based regex tools, is to list the contents of capturing groups. If you added that, yours would be my goto regex tester.

Not sure if im understanding you correctly but the site does show the content of all capture groups: http://regex101.com/r/nB1bR1
Post reply on HN