Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FParse
Description
Sees if Stream starts with the named command. If it does, skips through the command and blanks past it. Returns true of match.
| Name | Command |
| 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 Command
(
const TCHAR ** Stream,
const TCHAR * Match,
bool bParseMightTriggerExecution
)
Parameters
| Name | Remarks |
|---|---|
| bParseMightTriggerExecution | true: Caller guarantees this is only part of parsing and no execution happens without further parsing (good for "DumpConsoleCommands"). |