The “Hey, Scripting Guys!” blog has been retired. There are many useful posts in this blog, so we keep the blog here for historical reference. However, some information might be very outdated and many of the links might not work anymore.
New PowerShell content is being posted to the PowerShell Community blog where members of the community can create posts by submitting content in the GitHub repository.
Welcome back to the RegEx crash course. Last time we talked about the basic symbols we plan to use as our foundation. This week, we will be learning a new way to leverage our patterns for data extraction and how to rip our extracted data into pieces we care about.
[RegEx]
The  data type has some cool static members, but we're mostly going...
Welcome back to the RegEx guide. Last post we talked a little bit about the basics of RegEx and its uses. I mentioned the most important thing is to understand the symbols. Today we'll ease in with some of the basics to get us going, but later we will expand on these and see some other options we have.
 is used to represent any single ...
Hi all, this week I'll be talking about Regular Expressions. I've got a few posts planned to get you set up and going with some basic Regex.
Regex is used for extracting and validating data. Essentially, you can think of Regex as windows wild cards on steroids. Anytime we need to match data with a little more clarity than the *s and ?s ...
Summary: Learn how to use a regular expression pattern to remove non-alphabetic characters from a string by using Windows PowerShell.
(image) Â How can I use Windows PowerShell to remove non-alphabetic characters from a string?
(image) Â To remove nonalphabetic characters from a string, you can use the -Replace operator and substitute an ...
Summary: Use Windows PowerShell to replace non-alphabetic and non-number characters in a string.
(image) How can I use Windows PowerShell to replace every non-alphabetic and non-number character in a string with a hyphen?
(image) Use the Windows PowerShell –Replace ...