Regex
A look at using Regular Expressions (RegEx)
(youtube.com)
In this video I wanted to explore RegEx as it's so powerful and can really change a lot of the
By: John Savill submitted:Jun 17 2022
In this video I wanted to explore RegEx as it's so powerful and can really change a lot of the
different things we need to do.
By: John Savill submitted:Jun 17 2022
Building a PowerShell Command Inventory Solution – Part Deux
(powershell.anovelidea.org)
A quick update on how I used PowerShell Abstract Tree Syntax to solve this Iron Scripter challenge.
By: Dave Carroll submitted:Jun 16 2022
A quick update on how I used PowerShell Abstract Tree Syntax to solve this Iron Scripter challenge.
By: Dave Carroll submitted:Jun 16 2022
Cleaning data
(reddit.com)
I've recently had to deal with some messy data, and put together a bunch of small regex-based
By: u/akaBrotherNature submitted:Jun 15 2022
I've recently had to deal with some messy data, and put together a bunch of small regex-based
replace operations.
By: u/akaBrotherNature submitted:Jun 15 2022
Core Concept: Regex for N00bs
(youtube.com)
REGEX!!! It's often misunderstood and hated by many! But the truth is regex is super powerful and
By: Thomas Rayner submitted:Jun 15 2022
REGEX!!! It's often misunderstood and hated by many! But the truth is regex is super powerful and
sometime it's the best tool for the job! Ever wish you could learn Regex in a simple, straightforward tutorial with one of the best speakers in the PowerShell community? Thomas Rayner is Microsoft security engineer, blogger, Pluralsight author and Microsoft MVP. He is one of the brightest minds in the PowerShell community and he will be here showing us all how to use regex to solve complex tasks.
By: Thomas Rayner submitted:Jun 15 2022
Extract all IP addresses from a file
(twitter.com)
using a regular expression using...
By: Joe Stocker submitted:Jun 16 2022
using a regular expression using...
By: Joe Stocker submitted:Jun 16 2022
Master Regex in Powershell: Replace all but first character!
(youtube.com)
Learn how to use Regex in Powershell to replace all but the first character of a match in this
By: Professource Code submitted:Sep 27 2024
Learn how to use Regex in Powershell to replace all but the first character of a match in this
tutorial.
By: Professource Code submitted:Sep 27 2024
Normalizing Phone Numbers, Easier with Regex
(toastit.dev)
Need help normalizing the phone numbers in you Active Directory, or cleaning input data. Let Josh
By: submitted:Jun 15 2022
Need help normalizing the phone numbers in you Active Directory, or cleaning input data. Let Josh
show you how with a little PowerShell and RegEx.
By: submitted:Jun 15 2022
PowerShell and Regex (Find, Replace, Occurrences.)
(sid-500.com)
Want to get more out of PowerShell? Refine the search? Just get better? Then check out Regex. Regex
By: Patrick Gruenauer submitted:Jun 16 2022
Want to get more out of PowerShell? Refine the search? Just get better? Then check out Regex. Regex
statements make things possible that seem impossible. In this blog post I show you a few Regex examples you can build on. Let's dive in.
By: Patrick Gruenauer submitted:Jun 16 2022
PowerShell RegEx: Getting Started Guide
(jeffbrown.tech)
PowerShell stands out as a versatile tool in scripting and automation, offering a wide array of
By: Jeff Brown submitted:Aug 23 2024
PowerShell stands out as a versatile tool in scripting and automation, offering a wide array of
functionalities to manage systems and process data. One PowerShell feature is the ability to use Regular Expressions (RegEx), a method for searching, matching, and manipulating strings based on specific patterns.
By: Jeff Brown submitted:Aug 23 2024
Powershell: Ways to use Regex
(youtube.com)
The use of regular expressions is a valuable resource that can be used to create strings or patterns
By: submitted:Jun 15 2022
The use of regular expressions is a valuable resource that can be used to create strings or patterns
to identify chars or chains of text by including them into the scripts. There are basic examples where the regex are applied like in the credit cards or maybe in power ingestors, that are used to search through emails. The application of these regular expressions reaches several levels within the operating system while using them in PowerShell, allowing the users to set instructions to interact with almost any section of the software.
By: submitted:Jun 15 2022
Regex a UNC path – Clayton Errington
(claytonerrington.com)
While working with files and paths I needed a way to extract a UNC path.
By: Clayton Errington submitted:Oct 20 2023
While working with files and paths I needed a way to extract a UNC path.
By: Clayton Errington submitted:Oct 20 2023
Regex for N00bs
(youtube.com)
REGEX!!! It's often misunderstood and hated by many! But the truth is regex is super powerful and
By: Thomas Rayner submitted:Jun 15 2022
REGEX!!! It's often misunderstood and hated by many! But the truth is regex is super powerful and
sometime it's the best tool for the job!
By: Thomas Rayner submitted:Jun 15 2022
Today’s lesson on RegEx complexity
(reddit.com)
RegEx will let you be as complex as you want. ALWAYS focus on making your searches concise. If its
By: u/Szeraax submitted:Jun 15 2022
RegEx will let you be as complex as you want. ALWAYS focus on making your searches concise. If its
getting hairy, look for another way to describe what you are after. That will guide you down the road of RegEx enlightenment.
By: u/Szeraax submitted:Jun 15 2022
Using PowerShell and RegEx to extract text between delimiters
(powershellone.wordpress.com)
In this post I will share a little PowerShell function that I use quite frequently in order to
By: Dirk submitted:Jun 16 2022
In this post I will share a little PowerShell function that I use quite frequently in order to
extract text between delimiters out of a bigger chunk of text. I hope that this can be useful to others too.
By: Dirk submitted:Jun 16 2022
What’s New with Select-String in PowerShell7?
(commandline.ninja)
Select-String is one of those commands that either you use it often or not much at all. There
By: Mike Kanakos submitted:Jul 1 2022
Select-String is one of those commands that either you use it often or not much at all. There
doesn't seem to be a middle of the road for Select-String. I don't get called upon to use it that often, but when I do, it usually saves my bacon at work. The most typical use case for me is for searching flat log files for patterns of text or for all entries of a particular phrase across a bunch of files.
By: Mike Kanakos submitted:Jul 1 2022