Steinberg WAVELAB 8.5 RETAIL SOFTWARE 45370 数据表

产品代码
45370
下载
页码 770
Batch Renaming
About Regular Expressions
600
Special Characters Submenu
On this submenu, all special characters for regular expressions are available.
Shortcuts Submenu
End of text
$
Use this sign to specify that the text must be located 
at the end of the text. Any match not located at the 
end of the text is ignored.
Menu Item
Operator
Description
Menu Item
Operator
Description
Any digit (0-9)
/d
Symbolizes any digit, as [0-9].
Any non-digit (not 
0-9)
/D
Symbolizes any non-digit, as [^0-9].
Any letter (a-z or 
A-Z)
/l
Symbolizes any letter, as [a-z].
Any non-letter 
(not a-z, not A-Z)
/L
Symbolizes any non-letter, as [^a-z]. - Any 
alphabetic /w Special code to symbolize any 
alphabetic character, as [0-9a-z].
Any alphabetic 
(a-z, or A-Z, or 
0-9)
/w
Symbolizes any alphabetic character, as [0-9a-z].
Any 
non-alphabetic 
(not a-z, not A-Z, 
not 0-9)
/W
Symbolizes any non-alphabetic character, as 
[^0-9a-z].
Number
/u
Symbolizes a number (without a sign).
Number (with 
possible +- 
before)
/i
Symbolizes a number which can be preceded by a + 
or - sign.
Quoted string
/q
Symbolizes quoted text.
Simple word
/z
Symbolizes a simple word (a sequence of letters 
surrounded by non-letters, for example, spaces).