Appendix B. Regular Expression Reference
Regular expressions play an important role in most text parsing and text matching tasks. They form an important underpinning of the –match
operator, the switch
statement, the Select-String
cmdlet, and more. Tables B-1 through B-9 list commonly used regular expressions.
Character class | Matches |
. | Any character except for a newline. If the regular expression uses the SingleLine option, it matches any character.
PS >"T" -match '.' True
|
| Any character in the brackets. For example:
PS >"Test" -match '[Tes]' True
|
| Any character not in the brackets. For example:
PS >"Test" -match '[^Tes]' False
|
| Any character between the characters
PS >"Test" -match '[e-t]' True
|
| Any character not between any of the character ranges start through end, inclusive. You may include multiple character ranges between the brackets. For example,
PS >"Test" -match '[^e-t]' False
|
\p | Any character in the Unicode group or block range specified by
PS >"+" -match '\p{Sm}' True
|
\P | Any character not in the Unicode group or block range specified by
PS >"+" -match '\P{Sm}' False
|
\w | Any word character.
PS >"a" -match '\w' True
|
\W | Any nonword character. ... |
Get Windows PowerShell Cookbook now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.