Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FParse
Get a line of Stream, with support for extending beyond that line with certain characters, e.g. {} and \ the out character array will not include the ignored endlines
| Name | ELineExtendedFlags |
| Type | enum |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/Parse.h |
| Include Path | #include "Misc/Parse.h" |
Syntax
enum ELineExtendedFlags
{
None = 0,
SwallowDoubleSlashComments = 1,
SwallowSemicolonComments = 2,
SwallowExtraEOLs = 4,
BreakOnPipe = 8,
AllowBracketedMultiline = 16,
AllowEscapedEOLMultiline = 32,
Standard = AllowEscapedEOLMultiline,
OldDefaultMode = SwallowDoubleSlashComments | BreakOnPipe | AllowBracketedMultiline | AllowEscapedEOLMultiline | SwallowExtraEOLs,
OldExactMode = AllowBracketedMultiline | AllowEscapedEOLMultiline,
}
Values
| Name | Remarks |
|---|---|
| None | |
| SwallowDoubleSlashComments | |
| SwallowSemicolonComments | |
| SwallowExtraEOLs | |
| BreakOnPipe | |
| AllowBracketedMultiline | |
| AllowEscapedEOLMultiline | |
| Standard | Standard maps to an "expected" set of flags ( |
| OldDefaultMode | OldDefaultMode maps to what the previous 'bExact' mapped to when false. |
| OldExactMode | OldExactMode maps to what the previous 'bExact' mapped to when true. |