/ fm / liveswitch / StringAssistant
Class: StringAssistant
fm.liveswitch.StringAssistant
Contains methods for string manipulation.
Table of contents
Constructors
Methods
Constructors
constructor
+ new StringAssistant(): StringAssistant
Returns: StringAssistant
Defined in: Generated/TypeScript/fm.liveswitch/StringAssistant.ts:11
Methods
getTypeString
▸ getTypeString(): string
Returns: string
Defined in: Generated/TypeScript/fm.liveswitch/StringAssistant.ts:9
isNullOrWhiteSpace
▸ StaticisNullOrWhiteSpace(s: string): boolean
Parameters:
| Name | Type | Description |
|---|---|---|
s |
string | The s. |
Returns: boolean
Defined in: Generated/TypeScript/fm.liveswitch/StringAssistant.ts:28
subArray
▸ StaticsubArray(array: string[], offset: number): string[]
Creates a subarray from an existing array.
Parameters:
| Name | Type | Description |
|---|---|---|
array |
string[] | The source array. |
offset |
number | The offset into the source array. |
Returns: string[]
The subarray.
Defined in: Generated/TypeScript/fm.liveswitch/StringAssistant.ts:43
▸ StaticsubArray(array: string[], offset: number, count: number): string[]
Creates a subarray from an existing array.
Parameters:
| Name | Type | Description |
|---|---|---|
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.
Defined in: Generated/TypeScript/fm.liveswitch/StringAssistant.ts:53