Just released a major update for my site. What do you guys think?
31–40 of 78 posts
Re: Just released a major update for my site. What do you guys think?
#32There are two things I need when it comes to regex: 1. The ability to escape a string when searching using vi: http://www.0x11.net/regex/escaper.py 2. Lots of regex examples with a description of how they work.
Re: Just released a major update for my site. What do you guys think?
#33Re: Just released a major update for my site. What do you guys think?
#34Earlier quoted context omitted.
You cant insert a tab character (yet). Ill fix that. Hmm, you could perhaps minimize the fields you dont need while writing it? Use the [-] buttons
I could minimize some of the fields, but the larger point I should have made is that when I was typing the regex the first time, I was looking at the cheat sheet. The workflow I found myself fall into was: 1. Enter the test string. 2. Look at the cheat sheet and type into the regex field. 3. Look at the matches and test field to see if it was correct. 4. If incorrect, look at the explanation. 5. Go back to (2) So for…
Re: Just released a major update for my site. What do you guys think?
#35Bug report: I entered hi+ and it parses it like (hi)+ instead of like h(i+) (I mean with noncapturing parentheses).
Re: Just released a major update for my site. What do you guys think?
#36I would like to see regex mapped in url so I have the option to send a regex to someone in this website. It doesn't have to be server side URL mapping. Just push the regex to location hash and let JavaScript parse it back.
Re: Just released a major update for my site. What do you guys think?
#37Regular Expressions are perhaps my weakest point with regards to programming. I realize that they are just little sub-dialects that I need to learn the rules of but I've never had a project which required me to take the time to write extensive regular expressions. On the rare occasion that I do need to use a regular expression I find tools like this to be invaluable. This tool looks particularly nice. Community Forum…
Thanks for the kind words!
Re: Just released a major update for my site. What do you guys think?
#38Looks good, I'm impressed it handles the rfc822 regex fairly well too :) http://regex101.com/r/fZ6cD5
Re: Just released a major update for my site. What do you guys think?
#39I like it, especially this section http://regex101.com/community/ with commonly used regular expressions submitted by other users. Being able to vote a solution is also nice. Well done overall!
Re: Just released a major update for my site. What do you guys think?
#40Pretty nice, though would be better to use CodeMirror or Ace instead of textareas.