hosanna-ui-docs - v0.9.0
    Preparing search index...

    Interface for regular expression operations.

    interface ISGIRegex {
        IsMatch(str: string): boolean;
        Match(str: string): any;
        MatchAll(str: string): any;
        Replace(str: string, replacement: string): string;
        ReplaceAll(str: string, replacement: string): string;
        Split(str: string): any;
    }

    Hierarchy (View Summary)

    Index

    Methods