7

I'm looking for a regular expression testing program that I had installed on my previous workstation that I am now unable to find anywhere.

It was for java-specific regex's, so I'm pretty sure it was written in Java. There were a few tabs across the top, one of which was the explanation of the different regex terms from the Pattern class in the API.

The top text box was for entering text, the middle text box was for the regex, the bottom text box was where the matches were displayed.

I know that it's not much to go on, but does anyone recognise it?

masher
  • 3,814
  • 4
  • 31
  • 35

7 Answers7

4

Found it!

RegexSR

http://cui.unige.ch/~deriazm/apps/regexsr/

masher
  • 3,814
  • 4
  • 31
  • 35
  • the website provided leads to a malicios content warning (http://regexsr.oxgva.com/install.exe) – Psyconn Nov 02 '16 at 08:09
2

I don't know any specific desktop program that does it, but I personally am using this website which offers most of the stuff you're looking for (apart from the explanations).

I'd at least give it a look - great program in my opinion. Offers all the important flags, several different strings to test and prints out the java string of the given RE (so not manually inserting \ wherever it's necessary!)

Voo
  • 29,040
  • 11
  • 82
  • 156
1

If it doesn't need to be Java-specific, use Regex Coach. I use it for Java expressions and haven't run into a problem yet.

Chip McCormick
  • 744
  • 4
  • 17
1

Could it be RegexBuddy. It supports Java. You can find screenshots here.

You can see this StackOverflow Q&A for more suggestions.

Community
  • 1
  • 1
Go Dan
  • 15,194
  • 6
  • 41
  • 65
1

I use RegExr, JavaScript based.

seeker
  • 671
  • 7
  • 13
0

try Kodos regex tester (for windows), a good regex tool. I have used them initially to test regex patterns and used them in Java.

http://kodos.sourceforge.net

Santhosh Gutta
  • 346
  • 2
  • 5
0

To my opinion http://regex101.com is by far the best online regex checker for various regex formats, including Java Regex which You asked for. It even lets you debug all the steps (including forward and backward lookup) and explains the terms of the regex you develop!

Marc Giombetti
  • 819
  • 1
  • 8
  • 20