REGEX

PowerShell

How to Use PowerShell Grep: Select-String and RegEx Real World Examples

Grep (Global Regular Expression Print) is a commonly used Linux command for searching strings of characters in text files. There’s is no such thing as PowerShell grep. But naturally, you can get the same functionality in PowerShell. You’ll just need to use the Select-String cmdlet instead. In this article, I’ll show you how to get...

Last Update: Aug 11, 2022

LATEST

PowerShell Problem Solver: PowerShell String Parsing with Named Captures and REGEX

Last Update: Aug 11, 2022

PowerShell MVP Jeff Hicks shows us how to achieve PowerShell string parsing with named captures and REGEX.

View Article