Chapter 2. Regular Expression Reference
Regular expressions play an important role in most
text parsing and text matching tasks. They form an important underpinning of
the -split
and -match
operators, the switch
statement, the Select-String
cmdlet, and more. Tables 2-1 through 2-9 list commonly used regular
expressions.
Character class | Matches |
| Any character except for a newline.
If the regular expression uses the 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 PS > "Test" -match '[^e-t]' False |
| Any character in the Unicode group or block range specified by PS > "+" -match '\p{Sm}' True |
| Any character not in the Unicode
group or block range specified by PS > "+" -match '\P{Sm}' False |
| Any word character. Note that this is the Unicode definition ... |
Get Windows PowerShell Pocket Reference, 2nd Edition 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.