RegEx 110- Example using AutoHotkey Regular Expression on naming convention I've found the best way to learn RegEx is to actually play with it. For that reason I'm making a few videos that will demonstrate actual use-cases.

seen from Japan

seen from China
seen from China
seen from Japan

seen from United States
seen from United States
seen from China
seen from China
seen from Russia

seen from United States
seen from Saudi Arabia
seen from United States

seen from Germany

seen from Pakistan
seen from United States
seen from United States

seen from United States
seen from Japan

seen from Germany

seen from Malaysia
RegEx 110- Example using AutoHotkey Regular Expression on naming convention I've found the best way to learn RegEx is to actually play with it. For that reason I'm making a few videos that will demonstrate actual use-cases.
RegEx 107- Using POSIX in AutoHotkey Regular Expressions Once you get used to the RegEx symbols it is pretty easy to follow however, those not familiar with it, will often be perplexed by what it is doing.
RegEx 106-Use Named subpatterns in AutoHotkey Regular Expressions
RegEx 106-Use Named subpatterns in AutoHotkey Regular Expressions
Using Regular Expressions in AutoHotkey is awesome! On more complex expressions, I like to use Named subpatterns in AutoHotkey Regular Expressions to, automatically, store the results in named variables which indicate what they represent.
I typically get my RegEx working properly then I go back and change the pattern to using a named subpattern. For instance if the following was your RegEx that…
View On WordPress
RegEx 105- Simplify RegEx with escapes in AutoHotkey Regular Expressions
RegEx 105- Simplify RegEx with escapes in AutoHotkey Regular Expressions
Using RegEx to identify text patterns is an awesome skill-set to have. In the below tutorial we review some of the shortcuts /escapes in AutoHotkey Regular Expressions. These can make your code much more reader-friendly and easier to maintain.
Here’s a cheat-sheet for some of the more popular escapes:
\w =word character
\d = digit
\s =white space (tab, space, etc)
\b = word boundary
Remember,…
View On WordPress
RegEx 104-Using Anchors in AutoHotkey Regular Expressions Regular Expressions are amazing but can also slow-down your AutoHotkey script. Being able to us
RegEx 102-Using Classes & Ranges in AutoHotkey Regular Expressions: [a-z] Regular Expressions are an amazing way to compliment your skill-set! In this tutorial we'll explore using classes &
Intro to Regular Expressions in AutoHotkey- Pattern matching made easy! Regular Expressions in AutoHotkey (RegEx) are an amazing tool to have in your toolbox!
I can't tell you the # of times AutoHotkey Variadic Functions come in handy
I can’t tell you the # of times AutoHotkey Variadic Functions come in handy
AutoHotkey Variadic Functions can be incredibly handy when you don’t know the exact number of parameters. The below example shows some simple math where you can pass any number of parameters to be added. It also demonstrates how you can use MaxIndex() to determine how many parameters were passed to the function.
Browser_Forward::Reload Browser_Back:: ;***********variadic…
View On WordPress