Skip to content

Commit

Permalink
Update RegEx conversions.md
Browse files Browse the repository at this point in the history
  • Loading branch information
DandelionSprout authored Dec 13, 2023
1 parent 7be2cff commit 565d156
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Wiki/RegEx conversions.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,8 @@
## Letters suited for backslash obfuscation when using RegEx
According to Sublime Text build 4143. Case-sensitive.
* i, j, m, o, y, E, F, I, J, M, O, T, Y

### Trials to put said obfuscations into structural use (Note: Currently also matches square brackets as false positives. MUST be case-sensitive.)
* `(\(/.*)([a-zA-Z])\2([a-zA-Z0-9|/-])``\1\2{2}\3`
* `(\(/.*[a-zA-Z0-9 ?}-])([ijmoyEFIJMOTY])([a-zA-Z0-9 |/\\-].*:not)``\1\\\2\3`
* `(\(/.*[a-zA-Z0-9 ?}-])([ijmyEFIJMOTY])([a-zA-Z0-9 |{}/\\-].*/i?\))` `\1\\\2\3`

0 comments on commit 565d156

Please sign in to comment.