Java Specific Regular Expression Testing Program

I am looking for a regular expression testing program that I installed on my previous workstation, which I cannot find now.

This was for java-specific regular expressions, so I'm sure it was written in Java. There were several tabs at the top, one of which was an explanation of the various regular expression terms from the Pattern class in the API.

The top text box was for text input, the middle text box was for regular expression, and the bottom text box was where the matches were displayed.

I know this is not so much, but will anyone recognize him?

+7
source share
7 answers
+4
source

I don’t know of any specific desktop program that does this, but I personally use this website , which offers most of the material (other than explanations).

I would at least look at it - a great program, in my opinion. It offers all the important flags, several different lines for checking and printing the java string of a given RE (so do not manually insert \ where necessary!)

+3
source

If this is not necessary for Java, use Regex Coach . I use it for Java expressions and have not yet encountered a problem.

+1
source

May be RegexBuddy . It supports Java . You can find screenshots here .

You can see this https://stackoverflow.com/a/312960/ for more suggestions.

+1
source

I am using RegExr based on JavaScript.

+1
source

try the Kodos regexp tester (for windows), a good regex tool. At first, I used them to test regex patterns and use them in Java.

http://kodos.sourceforge.net

0
source

In my opinion, http://regex101.com is by far the best online regex check for various regex formats, including the Java Regex you requested. It even allows you to debug all stages (including search back and forth) and explains the conditions for the regular expression that you are developing!

0
source

All Articles