Options
All
  • Public
  • Public/Protected
  • All
Menu

Class StringAssistant

Contains methods for string manipulation.

Hierarchy

  • StringAssistant

Index

Constructors

constructor

Methods

getTypeString

  • getTypeString(): string
  • Returns string

Static isNullOrWhiteSpace

  • isNullOrWhiteSpace(s: string): boolean
  • Parameters

    • s: string

      The s.

    Returns boolean

Static subArray

  • subArray(array: string[], offset: number): string[]
  • subArray(array: string[], offset: number, count: number): string[]
  • Creates a subarray from an existing array.

    Parameters

    • array: string[]

      The source array.

    • offset: number

      The offset into the source array.

    Returns string[]

    The subarray.

  • Creates a subarray from an existing array.

    Parameters

    • array: string[]

      The source array.

    • offset: number

      The offset into the source array.

    • count: number

      The number of elements to copy into the subarray.

    Returns string[]

    The subarray.