Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FString
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 line ending characters
Caution!! this routine is O(N^2) allocations...use it for parsing very short text or not at all!
| Name | ParseIntoArrayLines |
| 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 ParseIntoArrayLines
(
TArray < FString > & OutArray,
bool bInCullEmpty
) const
The number of elements in OutArray
Parameters
| Name | Remarks |
|---|---|
| OutArray | The array to fill with the string pieces |
| bInCullEmpty | If true, empty strings are not added to the array |