ContainsLetters
Detects if the provided string contains any letters.- Blueprint
- C++

FString
required
The string to check.
bool
True if the string contains letters.
ContainsNumbers
Detects if the provided string contains any numbers.- Blueprint
- C++

FString
required
The string to check.
bool
True if the string contains numbers.
ContainsSpaces
Detects if the provided string contains any spaces.- Blueprint
- C++

FString
required
The string to check.
bool
True if the string contains spaces.
ContainsSpecialCharacters
Detects if the provided string contains any special characters.- Blueprint
- C++

FString
required
The string to check.
bool
True if the string contains special characters.
FilterCharacters
Filters out character types from the string.- Blueprint
- C++

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.
FString
The filtered string.
GetSortedStringArray
Returns a sorted copy of the provided string array.- Blueprint
- C++

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

