Wildcards: *.txt (finds any thing with a .txt ending)
\w = a word character [A-Za-z0-9_]
\t = a tab character
\s = a whitespace character that matches a space, a tab, a line break, or a form feed.
\S = a non-whitespace character.
\r \n = an end of line character.
\d = a digit from 0-9.
^ = The match must start at the beginning of the string or line.
$ = The match must occur at the end of the string or before \n at the end of the line or string.
{} = [\d{3}] Match any 3 decimal digits.
- = makes it greedy
. = any letter, number or symbiol except end of line characters. Same as saying "add one character".
[] = defines a character group
[^aeiou] = everything but what is in the character group
[answers: (^\S+)(.)(-\S+); $3$2$1 or \3\2\1]
Previous: Functions. Next: iDigBio Portal