Skip to main content

ContainsLetters

Detects if the provided string contains any letters.
Inputs
FString
required
The string to check.
Outputs
bool
True if the string contains letters.

ContainsNumbers

Detects if the provided string contains any numbers.
Inputs
FString
required
The string to check.
Outputs
bool
True if the string contains numbers.

ContainsSpaces

Detects if the provided string contains any spaces.
Inputs
FString
required
The string to check.
Outputs
bool
True if the string contains spaces.

ContainsSpecialCharacters

Detects if the provided string contains any special characters.
Inputs
FString
required
The string to check.
Outputs
bool
True if the string contains special characters.

FilterCharacters

Filters out character types from the string.
Inputs
FString
required
The string to filter.
bool
If true, filter out letters.
bool
If true, filter out numbers.
bool
If true, filter out special characters.
bool
If true, filter out spaces.
Outputs
FString
The filtered string.

GetSortedStringArray

Returns a sorted copy of the provided string array.
Inputs
TArray<FString>
required
The string array to sort.
Outputs
TArray<FString>
A sorted copy of the provided string array.