Copied from Rubular ( a nice tool to test regexes ):. - Source: Reddit / 3 months ago
To add on to this from a regex perspective - I find regex to be invaluable in my workflows. Once you learn the basics I always test and debug my strings using https://rubular.com because it has string hints at the bottom that are readily available. - Source: Reddit / 3 months ago
Mostly trial and error using pythex.org for python, regextester.com for c/c++, or rubular.com if you're coding in ruby for some reason. - Source: Reddit / 5 months ago
What this does is actually removes any Leads from being matched as duplicates that contain the words "unknown," "Unknown," "test," and "Test." You can see this in effect by using Rubular:. - Source: dev.to / 8 months ago
As an alternative: I normally use https://rubular.com. - Source: Reddit / 9 months ago
First of all I wanted to share this page to test Regex on the fly: Rubular. As four_reeds has already commented, you need to escape the dot for it to be correctly taken on the pattern. - Source: Reddit / 10 months ago
Oh, and that regex bit? Remember how we have Rubular for regex? We have the NodePattern Debugger for ASTs which you will find incredibly helpful, in fact you might open it now and try out some of these examples to make sure I'm not pulling a Fast one. (No, I'm not apologizing for that one.). - Source: dev.to / 10 months ago
I've always used https://rubular.com. It's been around for quite a while now. Not a lot of flashy features, but it's pretty nice to dump lines of text and see the matches / captures. - Source: Reddit / 10 months ago
I always use https://rubular.com/. Very helpful! - Source: Reddit / 10 months ago
As a ruby programmer, I must add an honorable mention for https://rubular.com/. - Source: Reddit / 10 months ago
I'm not great at regex, either but I use https://rubular.com/ to test my regex. - Source: Reddit / 11 months ago
Rubular.com is a good place to test your regex. - Source: Reddit / 11 months ago
If you need help with regex, I use https://rubular.com/. This is just a nice regex editor that does highlighting and can show you what you are doing right/wrong when you are looking for an expression. - Source: Reddit / about 1 year ago
I recommend checking out Rubular, an online Ruby regex editor where you create regular expressions and input strings against which to test them. It also includes a quick reference guide at the bottom of the page to explain common regex syntax. - Source: dev.to / about 1 year ago
A fantastic resource for figuring out more RegEx syntax is Rubular. I know I haven't gone too crazy in depth into this crash course on RegEx, but I hope I've given you enough of a push in the right direction to use this in your own code. Or at least the resources to find out more information and ways to find new patterns. Happy coding! - Source: dev.to / about 1 year ago
While I initially thought this would be fine, I was getting some unexpected results when I used it. Here's a screenshot from Rubular showing what I started seeing:. - Source: dev.to / about 1 year ago
I find myself using Rubular (https://rubular.com/) quite often for experimenting with regular expressions. - Source: Hacker News / about 1 year ago
Funny -- I was going to ask this same thing last night. :) Here’s a couple: - https://rubular.com - https://crontab.guru. - Source: Hacker News / over 1 year ago
This may be slightly off topic, but what are some other small, lesser known websites like this one that people use regularly? For me, it'd be https://rubular.com and https://crontab.guru. I've used those 2 sites regularly across my entire career. - Source: Hacker News / over 1 year ago
You can google an online regex tester example to try it out. - Source: Reddit / over 1 year ago
Https://rubular.com/ you'll thank me later. - Source: Reddit / over 1 year ago
Do you know an article comparing rubular to other products?
Suggest a link to a post with product alternatives.