Choose your operating system:
Windows
macOS
Linux
Module |
|
Header |
/Engine/Source/Runtime/Core/Public/Misc/CString.h |
Include |
#include "Misc/CString.h" |
namespace ESearchCase
{
enum Type
{
CaseSensitive,
IgnoreCase,
}
}
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. |
Determines case sensitivity options for string comparisons.