Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FParse
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Grabs the next space-delimited string from the input stream. If quoted, gets entire quoted string. | Misc/Parse.h | ||
| Grabs the next space-delimited (unless SingleCharacterDelimiter is provided) string from the input stream. | Misc/Parse.h | ||
static bool Token
(
const TCHAR*& Str, |
Grabs the next space-delimited (unless SingleCharacterDelimiter is provided) string from the input stream. | Misc/Parse.h |
Token(const TCHAR *&, bool)
Description
Grabs the next space-delimited string from the input stream. If quoted, gets entire quoted string.
| Name | Token |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/Parse.h |
| Include Path | #include "Misc/Parse.h" |
| Source | /Engine/Source/Runtime/Core/Private/Misc/Parse.cpp |
static FString Token
(
const TCHAR *& Str,
bool UseEscape
)
Token(const TCHAR *&, FString &, bool, const TCHAR)
Description
Grabs the next space-delimited (unless SingleCharacterDelimiter is provided) string from the input stream. If quoted, gets entire quoted string.
| Name | Token |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/Parse.h |
| Include Path | #include "Misc/Parse.h" |
| Source | /Engine/Source/Runtime/Core/Private/Misc/Parse.cpp |
static bool Token
(
const TCHAR *& Str,
FString & Arg,
bool bUseEscape,
const TCHAR SingleCharacterDelimiter
)
Token(const TCHAR &, TCHAR , int32, bool, const TCHAR)
Description
Grabs the next space-delimited (unless SingleCharacterDelimiter is provided) string from the input stream. If quoted, gets entire quoted string.
| Name | Token |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/Parse.h |
| Include Path | #include "Misc/Parse.h" |
| Source | /Engine/Source/Runtime/Core/Private/Misc/Parse.cpp |
static bool Token
(
const TCHAR *& Str,
TCHAR * Result,
int32 MaxLen,
bool bUseEscape,
const TCHAR SingleCharacterDelimiter
)