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

    Interface representing a string that extends multiple string-related interfaces.

    interface ISGROString {
        AppendString(s: string, len: number): any;
        DecodeUri(): string;
        DecodeUriComponent(): string;
        EncodeUri(): string;
        EncodeUriComponent(): string;
        EndsWith(matchString: string): boolean;
        EndsWith(matchString: string, length: number): boolean;
        Escape(): string;
        GetEntityEncode(): string;
        GetString(): string;
        Instr(substring: string): number;
        Instr(start_index: number, substring: string): number;
        Left(len: number): string;
        Len(): number;
        Mid(start_index: number): string;
        Mid(start_index: number, num_chars: number): string;
        Right(len: number): string;
        SetString(s: string, len: number): any;
        Split(separator: string): any;
        StartsWith(matchString: string): boolean;
        StartsWith(matchString: string, matchPos: number): boolean;
        ToFloat(): number;
        ToInt(): number;
        Tokenize(delim: string): any;
        ToStr(): string;
        Trim(): string;
        Unescape(): string;
    }

    Hierarchy (View Summary)

    Index

    Methods