menu
Version
2024.1.4.8780
2024.1.4.8780
2023.1.12.8706
2022.1.18.8567
2021.1.14.8108
2019.2.15.7667
2019.1.11.7296
2018.1.11.6987
2017.2.10.6745
2017.1.9.6501
2016.2.6.6153
2015.1.9.5624
2024.1.4.8780
2023.1.12.8706
2022.1.18.8567
2021.1.14.8108
2019.2.15.7667
2019.1.11.7296
2018.1.11.6987
2017.2.10.6745
2017.1.9.6501
2016.2.6.6153
2015.1.9.5624
Wwise uses the ECMAScript regex style detailed in the following tables.
Anchors | |
---|---|
^ |
Start of string, or start of line in multi-line pattern |
$ |
End of string, or end of line in multi-line pattern |
\b |
Word boundary |
\B |
Not word boundary |
Character Classes | |
---|---|
\s |
White space |
\S |
Not white space |
\d |
Digit |
\D |
Not digit |
\w |
Word |
\W |
Not Word |
\x |
Hexadecimal digit Used for matching hex code characters, such as:
|
Quantifiers | |
---|---|
* |
White space |
+ |
Not white space |
? |
Digit |
{3} |
Exactly 3 |
{3,} |
3 or more |
{3,5} |
3, 4, or 5 |
Escape Sequences | |
---|---|
\ |
Escape following character ^ [ . $ { * ( \ + ) | ? < > |
Special Characters | |
---|---|
\n |
New line |
\r |
Carriage return |
\t |
Tab |
Groups and Ranges | |
---|---|
. |
Any character except new line (\n) |
\r |
Carriage return |
(a|b) |
a or b |
(...) |
Group |
(?:...) |
Passive (non-capturing) group |
[abc] |
Range (a or b or c) |
[^abc] |
Not (a or b or c) |
[a-q] |
Lower case letter from a to q |
[A-Q] |
Upper case letter from A to Q |
[0-7] |
Digit from 0 to 7 |
String Replacement | |
---|---|
$n |
nth non-passive group |
$2 |
"xyz" in /^(abc(xyz))$/ |
$1 |
"xyz" in /^(?:abc)(xyz)$/ |
$` |
Before matched string |
$' |
After matched string |
$+ |
Last matched string |
$& |
Entire matched string |
Questions? Problems? Need more info? Contact us, and we can help!
Visit our Support pageRegister your project and we'll help you get started with no strings attached!
Get started with Wwise