Skip to content
VectorBCO edited this page Jun 29, 2021 · 6 revisions

Goto topics list

Links and books

Basic help

Help about_regular_expressions

Great book about regular expressions

Jeffrey E.F. Friedl "Mastering Regular Expressions" [O'Reilly]

Cool article which describe how regex work in PowerShell

Kevin Marquette Blog

Online helper

regex101

Ready to use regex Library

regexlib

Cmdlets, comparison operators, [regex] class, variable $Match

Select-String -Pattern 'Exp1'

https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/select-string?view=powershell-7

-match -replace -split и -cmatch -creplace -csplit

https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_comparison_operators?view=powershell-5.1

[regex] class

https://docs.microsoft.com/en-us/dotnet/api/system.text.regularexpressions.regex?view=netcore-3.1

Methods "String": .Match(), .Split(), .Replace()

"" | Get-Member