Jump Masks

From WriteMonkey

Jump Masks

Home | Categories

In Jumps Window:

  • Press CTRL+LEFT/RIGHT to step through jump masks
  • Every mask has it's counterpart definition on the Jumps-tab of Preferences:

Jump_masks.jpg

When you add or edit an entry:

  • Test your mask by entering a few example terms, "true" and "false" ones
  • After clicking OK the 'Matches found' should match your expectations

For a crash course on Regular Expressions, let's take apart 'Quotes':

["“»‘].+?["”«’]|^>{1,}.*\n

["“»‘] image .+? image ["”«’] image OR image ^ image >{1,} image .* image \n

RegEx in a nutshell
^ Beginning of a line
\n new line, line break
. (dot) match any character
   
Referring to what stands left of it:
+ match one or more times
* match zero or more times
{n,m} at least n, but max m times
? non-greedy mode
   
Groups and Substrings
| OR operator
[xyz] x or y or z



["“»‘] image any one of these characers

.+? image any character, one or more times, non-greedy

["”«’] image any one of these characters

| image OR

^ image beginning of a line

>{1,} image the '>' character, at least one time

.* image any character, zero or more times, greedy

\n image new line


More examples:

Related topics: Filtering | RegEx


WriteMonkey version 2.4.0.6 | This helpfile last updated on Aug 29, 2012 --- Stefan Müller