Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
Lindrian
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
Lindrian
5y ago
regex101 has a few more distinguishing features: - more flavor support, - a regex debugger, - code generator, with support for a lot of languages, - a complete quick reference with examples, - an extensive regex library, - a regex quiz for
2.
▲
by
Lindrian
9y ago
Typically not. Sometimes they are tagged as nominal mentions.
3.
▲
by
Lindrian
9y ago
Don't agree. LSTM is a very good option for NER. I have personally experimented with simple FFNN and language models to accommodate variable width input and achieved very good results. I will be publishing a paper on this soon. The sys
4.
▲
by
Lindrian
12y ago
The unit testing feature is located in the menu on the left, under the submenu "TOOLS" (the checkbox icon).
5.
▲
Unit testing for regex regex101.com – thoughts?
(regex101.com)
1 points
by
Lindrian
12y ago
|
1 comments
6.
▲
A new version of RegEx101 has been released, feedback much appreciated
(regex101.com)
1 points
by
Lindrian
12y ago
|
0 comments
7.
▲
by
Lindrian
13y ago
I posted this last night but was told it was incorrect format so I'm giving it another try. Hope this is alright! Please enjoy the site and any feedback is appreciated.
8.
▲
Show HN: my improved regex testing and debugging service, regex101
(regex101.com)
3 points
by
Lindrian
13y ago
|
1 comments
9.
▲
I have completely recoded my regex testing service. What do you think?
(regex101.com)
1 points
by
Lindrian
13y ago
|
1 comments
10.
▲
by
Lindrian
13y ago
Hello I'm the creator. PCRE offers a neat feature to limit backtracking, Python does not. I still havent found a decent solution to this issue. Javascript is run in your own browser so you'll only be screwing yourself there :p
11.
▲
by
Lindrian
13y ago
I think this shows quite clearly what is going on and why I get the result I get: http://regex101.com/r/kU3cJ6/#debugger (imgur link: http://imgur.com/H2IkNGy ) If you don't agree with me, cou
12.
▲
by
Lindrian
13y ago
I have thought about this, but in cases where it would be useful, it's impossible to generate a sample match string. For example, creating a match string for /(?:a|[bc])efg?/ is super simple, but for something like: /(ab
13.
▲
by
Lindrian
13y ago
Forgot to tell you how to use it. Simply insert an expression and some text and press the little red button right above the input for the regex. That's all you have to do! Enjoy :)
14.
▲
RegEx101.com now offers a debugger
(regex101.com)
155 points
by
Lindrian
13y ago
|
30 comments
15.
▲
by
Lindrian
13y ago
You could always comment the regex. My website provides a full and accurate explanation, step by step, of almost any given regex. Have a look here: http://regex101.com/r/dG4lP3
16.
▲
by
Lindrian
13y ago
Not sure if im understanding you correctly but the site does show the content of all capture groups: http://regex101.com/r/nB1bR1
17.
▲
by
Lindrian
13y ago
You mean the fact that it doesnt show matches instantly?
18.
▲
by
Lindrian
13y ago
You're right. I managed to mess up some entries of the database, thats why you see some ungodly stuff like 11b email validation. I'll patch it up.
19.
▲
by
Lindrian
13y ago
Hmm, I don't want users to see shorter answers and then modifying their own to get the same length or even shorter (since they didnt do the real work). What about something like being able to see the shortest answer, but after that you
20.
▲
by
Lindrian
13y ago
I don't think the problem is the click event sending you to the top of the page, its the fact that the textarea is out of sight and its being modified. The browser will then focus it for you, which scrolls you up. Only way I can think
21.
▲
by
Lindrian
13y ago
Hmm, the explanation part does part of what you're asking. However, I don't know of any straight forward documentation that I can link to that will explain each and every one of these tokens. I have just read through pcre.txt many
22.
▲
by
Lindrian
13y ago
Thats a great idea! I'll work something out.
23.
▲
by
Lindrian
13y ago
Glad you like the design :). Hmm, something like "Regex library" maybe? Unsure of how to word it properly.
24.
▲
by
Lindrian
13y ago
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.
25.
▲
by
Lindrian
13y ago
In the about page I mention what version of PCRE is running, and from there you can get to: http://www.pcre.org/pcre.txt
26.
▲
by
Lindrian
13y ago
No its not but feel free to send me an email on contact@regex101.com so we can talk privately :)
27.
▲
by
Lindrian
13y ago
Do you mean its not explained correctly or its not in the quickref? Its not enabled by default because it changes the behavior of many things, for example what \d and \w match. The user has to decide for himself what flags to use.
28.
▲
by
Lindrian
13y ago
Haha, hopefully my website will help you keep regex-related problems to a minimum :).
29.
▲
by
Lindrian
13y ago
Adjusted, thank you!
30.
▲
by
Lindrian
13y ago
The colorizer does most of the grunt work, it tokenizes the regex and colors it properly. The explainer then basically just loops over those tokens and explain them. It's a bit hacked together as it works right now though; but it seems
More ›