Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Containers > API/Runtime/Core/Containers/FString
Warnings * Caution!! this routine is O(N^2) allocations...use it for parsing very short text or not at all!
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Containers/UnrealString.h |
| Include | #include "Containers/UnrealString.h" |
| Source | /Engine/Source/Runtime/Core/Private/Containers/String.cpp |
int32 ParseIntoArrayWS
&40;
TArray< FString > & OutArray,
const TCHAR &42; pchExtraDelim,
bool InCullEmpty
&41; const
Remarks
Breaks up a delimited string into elements of a string array, using any whitespace and an optional extra delimter, like a ","
Caution!! this routine is O(N^2) allocations...use it for parsing very short text or not at all! Caution!! this routine is O(N^2) allocations...use it for parsing very short text or not at all The number of elements in InArray
Parameters
| Name | Description |
|---|---|
| InArray | The array to fill with the string pieces |
| pchExtraDelim | The string to delimit on |