.
|
To search for an unknown or arbitrary pitch, use the
dot to represent any one pitch. Example:
(G# . B) | will match to |
(G# E B) (G# A# B)
(G# E- B)
(G# C-- B)
etc. |
|
?
|
To indicate an optional note, append a question
mark. Examples:
(D F#? A) | will match to |
(D F# A), or
(D A)
|
(C .? G) | will match to |
(C E G)
(C G)
(C F# G)
etc. |
|
*
|
To indicate any number of optional notes, insert an
asterisk. Example:
(F * A) | will match to |
(F A)
(F G A)
(F B G A)
(F B F# G A)
etc.
|
|
+
|
To indicate any number of repeated notes, append a plus sign. Example:
(G+ E) | will match to |
(G E)
(G G E)
(G G G E)
etc.
|
|
^
|
A caret appended to a note indicates an arbitrary accidental.
Examples:
(C E^ G) | will match to |
(C E G)
(C E# G)
(C E- G)
(C Ex G)
(C E-- G)
|
|