Navigation
Unreal Engine C++ API Reference > Runtime > Core > Misc
References
Module | Core |
Header | /Engine/Source/Runtime/Core/Public/Misc/CString.h |
Include | #include "Misc/CString.h" |
Syntax
namespace ESearchCase
{
enum Type
&123;
CaseSensitive,
IgnoreCase,
&125;
}
Values
Name | Description |
---|---|
CaseSensitive | Case sensitive. Upper/lower casing must match for strings to be considered equal. |
IgnoreCase | Ignore case. Upper/lower casing does not matter when making a comparison. |
Remarks
Determines case sensitivity options for string comparisons.