Windows has wonderful tool working with regular expressions - RegexBuddy. It has two problems:
- It's commercial.
- It runs on Windows (Linux version no more available).
What tools (except grep) you use working with regular expressions on Linux?
|
Windows has wonderful tool working with regular expressions - RegexBuddy. It has two problems:
What tools (except grep) you use working with regular expressions on Linux? | |||||||||
feedback
|
|
See my answer to How do you write and test your regular expressions? on StackOverflow. Don't use Regex Buddy, nor any similar tool. Spend a bit of time learning how regular expressions work. They are actually much simpler than people think. | |||||||||||||||||
feedback
|
|
I use Kiki, it's simple but does the job. Written in Python and there's an ubuntu package named
| ||||
|
feedback
|
|
I usually use emacs with regex-tool. It get's the job done. Here's someone's blog entry about it http://bc.tech.coop/blog/071103.html | |||
|
feedback
|
|
MonoDevelop includes a powerfull Regex tool. It includes a library of user submitted Regexes and a Regex tester. The regex validator is System.Text.RegularExpressions.Regex. | |||||||||
feedback
|
|
RegexBuddy is reported to run perfectly on Wine. | |||||||
feedback
|
|
There is also Kodos http://kodos.sourceforge.net/ | |||
|
feedback
|
|
txt2regex comes in handy sometimes. By the way, for Windows, I like Regex Coach. | |||
|
feedback
|
|
There's an add-on for Firefox that I find handy for my not-to-onerous needs. | |||
|
feedback
|
|
Vim. Dynamically finds and highlights the first match for the regular expression as you type it. I use this on Windows too, actually, for the same reason. | |||||||
feedback
|
|
I usually don't use any tools for this, but kregexpeditor seems to be worth mentioning. It has all the features you'd expect and the next version will even support backreferences. | |||
|
feedback
|