Navigation
API > API/Runtime > API/Runtime/Core
| |
|
| Name |
UE::String::EParseTokensOptions |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/Core/Public/String/ParseTokens.h |
| Include Path |
#include "String/ParseTokens.h" |
Syntax
namespace UE
{
namespace String
{
enum EParseTokensOptions
{
None = 0,
IgnoreCase = 1 << 0,
SkipEmpty = 1 << 1,
Trim = 1 << 2,
}
}
}
Values
| Name |
Remarks |
| None |
Use the default options when parsing tokens. |
| IgnoreCase |
Ignore case when comparing delimiters against the string. |
| SkipEmpty |
Skip tokens that are empty or, if trimming, only whitespace. |
| Trim |
Trim whitespace from each parsed token. |