Need to work a bit on a pretty big text file.
Could someone suggest something similar to "The Regex Coach" but to be able to save matched results only?
Tools like "The Regex Coach" or the "Regular Expression Designer" are tools to test regular expressions and not to work on files. I don't know one that can store the results, Regex Designer can store the Regexes in a xml file.
If you want to do that you should use a Editor with regular expression support, like:
There are many good tools available. I regularly use the following. Based on the OP, it sounds like a simple use of grep would work (grep pattern file > newfile
).
Many others as well (Perl, Python, etc.)
I have been using Ultrapico's Expresso, which is a free desktop Windows app. It allows complete development and testing of all scenarios specified in the IEEE specifications, and is a great tool. I can't recommend it strongly enough. It lets you save and retrieve projects, so if you are heavy into RegEx, you will be very happy with how it supports your needs.
https://regex101.com/ is available online, it's OK but nowhere near as robust as Expresso.
For Mac, there is Re/g in the App Store for $13.99, I don't know how good it is.
For Linux, you can run some quick checks in Bash shell, but for playing around you are probably better off on the websites.