utility-pickle - v0.1.0
    Preparing search index...

    Class Regex

    A static utility class containing commonly used regular expressions

    Index

    Properties

    digits: RegExp = ...

    Matches one or more digit characters.

    firstLower: RegExp = ...

    Matches lowercase at the start of a string for pascal case conversion.

    firstUpper: RegExp = ...

    Matches uppercase at the start of a string for camel case conversion.

    letters: RegExp = ...

    Matches one or more letter characters (A-Z, a-z).

    lineBreaks: RegExp = ...

    Matches all line breaks (\r?\n).

    lowerUpper: RegExp = ...

    Matches lowercase followed by uppercase.

    nonAlphanumeric: RegExp = ...

    Matches non-alphanumeric characters (inverse of [A-Za-z0-9]).

    pascalCamelBoundary: RegExp = ...

    Matches PascalCase/CamelCase word boundaries (split for e.g. HelloWorld to Hello World).

    separatorAndChar: RegExp = ...

    Matches dash, underscore, or space plus next char.

    spaces: RegExp = ...

    Matches one or more spaces for splitting.

    whitespace: RegExp = ...

    Matches one or more whitespace characters.

    wordBoundary: RegExp = ...

    Matches the start of a word for capitalization.