LogScale Regular Expression Engines

LogScale supports the following regular expression engines:

  • LogScale Regular Expression Engine v1 (default)

    The default regular expression is used for all regular expression operations.

  • LogScale Regular Expression Engine v2

    Enabled by using the F flag to a regular expression. For more information, see LogScale Regular Expression Engine V2

LogScale Regular Expression Engine V2

Available: LogScale Regex Engine v2 v1.154.0

Updating regular expressions with higher-performance for specific use cases.

Important

LogScale Regular Expression Engine v2 is currently under development.

  • V2 aims to be faster in general than V1, but there may be regular expressions where the performance is slower. For example, repetition of some character classes concatenated with a suffix, e.g. [a-zA-Z]+ing.

  • Some constructs have different meanings in v2 than the default (v1) regex engine:

    • Horizontal whitespace character classes. In particular, v2 recognises \h as the character class representing horizontal whitespace, whereas the current engine considers \h to be the escaping of the character h.

    • Vertical whitespace; \v in v2 is understood as the character class representing vertical whitespace, whereas it is being understood as the character v by the v1 regex engine, unless the current regex engine fails to compile the rest of the regular expression, in which case it enters a fallback mode, and where \v specifically matches the vertical tab character, and neither v or the full vertical whitespace character class.

    • In v1 the regular expression engine applies in-line flags to the first branch of an alternation and not the entire implicit group. I.e. the regex:

      logscale
      (?i)Huck[a-z]+|Saw[a-z]+

      Is interpreted as:

      logscale
      (?:(?i)Huck[a-z]+)|Saw[a-z]+

      By the current engine, whereas it is interpreted in v2 as:

      logscale
      (?i)(?:Huck[a-z]+|Saw[a-z]+)

      The latter being behavior consistent with that of other engines such as PCRE2, Java, ECMAscript.

  • Not all features for v2 are available. In the event of an unavailable feature or syntax, an error message will be shown and the user can either try to modify the regular expression to not use the features or use the default (v1) engine instead.

If you experience an unexpected result using v2, try using the v1 engine by removing the F flag from the use of the regular expression, to see if the default engine produces a different result.