Regular Expressions are an amazing way to compliment your skill-set! In this tutorial we’ll explore using classes & Ranges in AutoHotkey Regular Expressions. In RegEx there are a ton of different ways to match your text pattern. I’m starting off with one of the easiest to understand & follow. Below are a few of the common usages of classes & ranges:
- Basic usage: [12345], [abcde]
- Ranges: [1-5], [a-e]
- Complements “Not In”: [^6-9], [^f-z]