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

    Interface representing regex functionality that extends ISGIRegex.

    interface ISGRORegex {
        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