Wikipedia:REGEX

Wikipedia:AutoWikiBrowser/Regular expression

Wikipedia:AutoWikiBrowser/Regular expression


A regular expression or regex is a sequence of characters that define a pattern to be searched for in a text. Each occurrence of the pattern may then be automatically replaced with another string, which may include parts of the identified pattern. AutoWikiBrowser uses the .NET flavor of regex.[1]

More information Chapters: ...

Syntax

Anchors

Used to anchor the search pattern to certain points in the searched text.

More information Syntax, Comments ...

Character classes

Expressions which match any character in a pre-defined set. This list is not exhaustive.

More information Character class, Will match ...

Tokens

Tokens match a single character from a specified set or range of characters.

More information Tokens, Examples ...

Groups

Groups match a string of characters (including tokens) in sequence. By default, matches to groups are captured for later reference. Groups may be nested within other groups.

More information Syntax, Examples ...

Quantifiers

Quantifiers specify how many of the preceding token or group may be matched.

More information Syntax, Examples ...

By default, quantifiers are "greedy", meaning they will match as many characters as possible while still allowing the full expression to find a match. Adding a question mark ("?") after a qualifier will make it non-greedy, meaning it will match as few characters as possible while still allowing the full expression to find a match. See #Greed and quantifiers for examples.

Metacharacters and the escape character

Metacharacters are characters with special meaning in regex; to match these characters literally, they must be "escaped" by being preceded with with the escape character \.

More information Escape character, Comments ...

Back references

Used to match a previously captured group again.

More information Syntax, Comments ...

Look-around

Used to check what comes before or after, without consuming or capturing. ("Without consuming" means that matches for look-around assertions do not become part of the string to be replaced. In the following examples, only "abc" is consumed.) In .NET regex, all regex syntax can be used within a look-around assertion.

More information Syntax, Examples ...

Commenting

Comments in the search string do not affect the resulting matches.

More information Syntax, Comments ...

Using captured groups in the replacement string

Captured groups can be output as part of the replacement string.

More information Reference style, Example search string ...

Tokens and groups

Tokens and groups are portions of a regular expression which can be followed by a quantifier to modify the number of consecutive matches. A token is a character, special character, character class, or range (e.g. [m-q]). A group is formed by enclosing tokens or other groups within parentheses. All of these can be modified to match a number of times by a quantifier. For example: a?, \n+, \d{4}, [m-r]*, (a?\n+\d{4}[m-r]*|not){3,7}, and ((?:97[89]-?)?(?:\d[ -]?){9}[\dXx]).

Greed and quantifiers

Greed, in regular expression context, describes the number of characters which will be matched (often also stated as "consumed") by a variable length portion of a regular expression  a token or group followed by a quantifier, which specifies a number (or range of numbers) of tokens. If the portion of the regular expression is "greedy", it will match as many characters as possible. If it is not greedy, it will match as few characters as possible.

By default, quantifiers in AWB are greedy. To make a quantifier non-greedy, it must be followed by a question mark. For example:

In this string:

[[Lorem ipsum]] dolor sit amet, [[consectetur adipisicing]] elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

this expression:

\[\[.*\]\]

will match [[Lorem ipsum]] dolor sit amet, [[consectetur adipisicing]].

This expression:

\[\[.*?\]\]

will match [[Lorem ipsum]] and [[consectetur adipisicing]].

Be careful with expressions like (\w)(<ref[^<>]*>.*?</ref>)([,.:;]), whose center capture group will span more than one ref group if the outer conditions are met:
sed do eiusmod tempor<ref>reference</ref> incididunt ut <ref>reference 2</ref>. labore

Examples

Sample patterns

More information Regex pattern, Will Match ...
More information Search for flagicon template and remove, Find ...

Commonly used expressions

Match inside <ref></ref>
Regex: <ref[^>]*>([^<]|<[^/]|</[^r]|</r[^e]|</re[^f]|</ref[^>])+</ref>
Match inside <ref></ref> using a (?! not match) notation
Regex: <ref[^>]*>([^<]|<(?!/ref>))+</ref>
Match template {{...}} possibly with templates inside it, but no templates inside those
Regex: {{([^{]|{[^{]|{{[^{}]+}})+}}
Match words and spaces
Regex: [\w\s]+
Match bracketed URLs
Regex: \[(https?://[^\]\[<>\s"]+) *((?<= )[^\n\]]*|)\]

Tips and tricks

Regex behavior options

Regex offers several options to change the default behavior.[3] Five of these options can be controlled with inline expressions, as described below. Four of these options can also be applied to the entire search pattern with check boxes in the AWB "Find-and-replace" tools. By default, all options are off.

More information Option, Inline flag ...
  1. To match whitespace characters while the IgnorePatternWhitespace option is enabled, they must be identified with character classes, i.e. \s (whitespace), \n (newline), or \t (tab). (To match only a space, but not a tab or newline, use the pattern \p{Zs}.)

Inline syntax

The options statement (?flags-flags) turns the options given by "flags" on (or off, for any flags preceded by a minus sign) from the point where the statement appears to the end of the pattern, or to the point where a given option is cancelled by another options statement. For example:

(?im-s)    #Turn ON IgnoreCase (i) and MultiLine (m) options, and turn OFF SingleLine (s) option, from here to the end of the pattern or until cancelled

Alternatively, the syntax (?flags-flags:pattern) applies the specified options only to the part of the pattern appearing inside the parentheses:

(?x:pattern1)pattern2    #Apply the IgnorePatternWhitespace (x) option to pattern1, but not to pattern2

User-made shortcut editing macros

You can make your own shortcut editing macros. When you edit a page, you can enter your short-cut macro keys into the page anywhere you want AWB to act upon them.

For example, you are examining a page in the AWB edit box. You see numerous items like adding {{fact}}, inserting line breaks <br />, commenting out entire lines <!--comment-->, inserting state names, <ref>Insert footnote text here</ref>, insert Level 2,3,or even 4 headlines, etc... This can all be done by creating your short-cut macro keys.

  • The process
  1. Create a rule. See Find and replace, Advanced settings.
  2. Edit your page in the edit box. Insert your short-cut editing macro key(s) anywhere in the page you want AWB to make the change(s) for you.
  3. Re-parse the page. Right click on the edit box and select Re-parse from the context pop up menu. AWB will then re-examine your page with your macro short-cut key(s), find your short-cut key(s) and perform the action you specified in the rule.

Naming a short-cut macro key can be any name. But it is best to try and make it unique so that it will not interfere with any other process that AWB may find and suggest. For that reason using /// followed by a set of lowercase characters that you can easily remember is best (lowercase is used so that you do not have to use the shift key). You can then enter these short-cut macros keys you create into the page manually or by using the edit box context menu paste more function. The reason why we use three '/' is so that AWB will not confuse web addresses/url's in a page when re-parsing.

Examples:

Create a rule as a regular expression.

More information ///col Comment out entire line, Short-cut key: ...

Efficiency

Efficiency is how long the regex engine takes to find matches, which is a function of how many characters the engine has to read, including backtracking. Complex regular expressions can often be constructed in several different ways, all with the same outputs but with greatly varying efficiency. If AWB is taking a long time to generate results because of a regex rule:

  • Try constructing the expression a different way. There are several online resources with guidance to creating efficient regex patterns.
  • Using the "advanced settings" find-and-replace tool, enter expressions on the "If" tab to filter the pages that an expensive find-and-replace rule is applied to.

References

  1. adegeo (18 June 2022). "Regular Expression Language - Quick Reference". learn.microsoft.com. Archived from the original on 2023-02-05. Retrieved 2023-02-05.
  2. "Regex Tutorial – Unicode Characters and Properties". www.regular-expressions.info. Archived from the original on 19 December 2022. Retrieved 3 January 2023.
  3. adegeo (29 June 2022). "Options for regular expression". learn.microsoft.com. Archived from the original on 2023-02-05. Retrieved 2023-02-05.

Online regular expressions testing tools

Desktop regular expression testing tool

Documentation about regular expressions


Share this article:

This article uses material from the Wikipedia article Wikipedia:REGEX, and is written by contributors. Text is available under a CC BY-SA 4.0 International License; additional terms may apply. Images, videos and audio are available under their respective licenses.