The new forums will be named Coin Return (based on the most recent vote)! You can check on the status and timeline of the transition to the new forums here.
The Guiding Principles and New Rules document is now in effect.

Text editor with good regex support?

electricitylikesmeelectricitylikesme Registered User regular
So every now and again I run into RegEx's. I have no real need to learn them, except a compulsion to continue understanding the "in" things in computers, but I have discovered that they are fantastic when you need to do large scale transforms of structured text.

The problem is, I have no editor which makes this process easy. My current favorite website is this one (RegExr) which has an excellent quick reference and shows me in real time what I'm writing, so I can figure things out. It's how I've been learning so far, and I also use it for practical tasks.

Is there any free software though which will let me do something similar locally though? I'd kind of like not to be dependent on a website's continued existence to process text/test out regex's, and unfortunately, Notepad++'s support is pretty poor.

electricitylikesme on

Posts

  • InfidelInfidel Heretic Registered User regular
    edited January 2011
    I use TextPad a lot and its regex search and replace.

    Infidel on
    OrokosPA.png
  • RSPRSP Registered User regular
    edited January 2011
    Rexexps are a unix standby and correspondingly the editors that make best use of them are *nix natives. Most have windows ports though - look into vi, emacs, and acme.

    RSP on
  • Baron DirigibleBaron Dirigible Registered User regular
    edited January 2011
    this seems to be exactly what you're looking for!

    [edit: I should add, thanks for the link, that's an awesome website I'll be making use of myself

    Baron Dirigible on
  • edited January 2011
    This content has been removed.

  • Joe KJoe K Registered User regular
    edited January 2011
  • edited January 2011
    This content has been removed.

  • Nierteroth9Nierteroth9 Registered User new member
    edited May 2011
    I've found "Programmer's Notepad" to be one of the best freeware text editors available, supporting a variety of languages and offering a robust regular expression engine. The only negative I've found is that it doesn't support hex expressions (e.g., [\x00-\xFF]).

    Related but separate, the documentation indicates that it doesn't support multi-line expressions, but it can be done with creative use of \w,\W and \s expressions and lookaround constructs.

    http://www.pnotepad.org/

    Nierteroth9 on
Sign In or Register to comment.