Regular Expressions 101

Community Library

Community Library Entry

0

Regular ExpressionOpen Workspace

/
\s*(?!#)(?:.*run\s)?(\bride\b).*?(\bmount\b|\bdismount\b)
/
gi

Description
Created·2023-06-25 08:32
Type·Match
Flavor·PCRE2 (PHP)

finds every command in 1st group and subcommands in 2nd group. excludes every comments, and matches command even if it has spaces in the beginning. This exact regex is used for datapackhub.net datapack mcfunction downgrader.

Submitted by Anonymous
Open Workspace