PS : One thing that could be useful would be a feature allowing to anotate some rules and batches to rapidly see what they do
-- especially convenient when working with loooonnng regex. I might bring the suggestion directly to the developer.
-Armando
> I might bring the suggestion directly to the developer.
Do this please ;-)
> working with loooonnng regex.
FYI, ReNamers RegEx engine supports (?#my comments)
Therefore, many modern regex flavors allow you to insert comments into regexes.
The syntax is (?#comment) where "comment" can be whatever you want,
as long as it does not contain a closing round bracket.
The regex engine ignores everything after the (?# until the first closing round bracket.
http://www.regular-e...s.info/comments.htmlf.ex. \d*(?#find an digit, null or more)
Try it out and tell us how it works.
-
And i found out "Free-Spacing Regular Expressions" is supported too
In free-spacing mode, whitespace between regular expression tokens is ignored.
Whitespace includes spaces, tabs and line breaks.
Note that only whitespace between tokens is ignored.
E.g. a b c is the same as abc in free-spacing mode,
http://www.regular-e...nfo/freespacing.html-
For comments on saving presets...
you could add an PascalScript-RULE for your comments only. (without any script, just comment only
You have to comment-out this comments.
You can use either of these commenting styles:
{ comments }
// comments
(* comments *)
HTH?