Those of you who previously tried the community preview of PowerRegEx 2014 will notice that we made some significant changes to the tool.
Here are some of the new features of PowerRegEx 2014
Ribbon Interface
The first major change is…
Read More
How many times have you worked with Regular Expressions and forgotten what expression denoted what? Oftentimes I need to search online to figure out what basic expressions to use or end up using another method. For this reason we are…
Read More
A few days ago I posted a blog entry on simple regular expression replacements in VBScript. Let me show you a more complex example. It helps to have a purpose, even for demonstration so my need is to convert an…
Read More
Last week I talked about using Regular Expressions in VBScript. In that post I focused on simple matching. However, you can also do string replacements using the regular expression object’s Replace() method. You specify a string to replace and its…
Read More
I seem to find my self turning to regular expressions more often these days, often to help out a fellow scripter in one of the many scripting forums I keep tabs on. I thought I’d take a moment and provide…
Read More
In a recent discussion in the PowerShell forum at ScriptingAnswers.com, a member was trying to parse the HOSTS file on a number of desktops. This is a thankless but probably useful task that seems perfectly suited to a scripted solution.…
Read More