Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FString
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
int32 ParseIntoArray
(
TArray< FString >& OutArray, |
Breaks up a delimited string into elements of a string array. | ||
int32 ParseIntoArray
(
TArray< FString >& OutArray, |
Breaks up a delimited string into elements of a string array, using the given delimiters |
ParseIntoArray(TArray< FString > &, const ElementType *, bool)
Description
Breaks up a delimited string into elements of a string array.
| Name | ParseIntoArray |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/UnrealString.h.inl |
| Include Path | #include "Containers/UnrealString.h.inl" |
| Source | /Engine/Source/Runtime/Core/Private/Containers/String.cpp.inl |
int32 ParseIntoArray
(
TArray < FString > & OutArray,
const ElementType * pchDelim,
bool bInCullEmpty
) const
The number of elements in OutArray
Parameters
| Name | Remarks |
|---|---|
| OutArray | The array to fill with the string pieces |
| pchDelim | The string to delimit on |
| bInCullEmpty | If true, empty strings are not added to the array |
ParseIntoArray(TArray< FString > &, const ElementType const , int32, bool)
Warnings * Caution!! this routine is O(N^2) allocations...use it for parsing very short text or not at all!
Description
Breaks up a delimited string into elements of a string array, using the given delimiters
Caution!! this routine is O(N^2) allocations...use it for parsing very short text or not at all!
| Name | ParseIntoArray |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/UnrealString.h.inl |
| Include Path | #include "Containers/UnrealString.h.inl" |
| Source | /Engine/Source/Runtime/Core/Private/Containers/String.cpp.inl |
int32 ParseIntoArray
(
TArray < FString > & OutArray,
const ElementType *const * DelimArray,
int32 NumDelims,
bool bInCullEmpty
) const
The number of elements in OutArray
Parameters
| Name | Remarks |
|---|---|
| OutArray | The array to fill with the string pieces |
| DelimArray | The strings to delimit on |
| NumDelims | The number of delimiters. |
| bInCullEmpty | If true, empty strings are not added to the array |