Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TCString
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static const CharType * Stristr
(
const CharType* Str, |
Finds string in string, case insensitive Finds string in string, case insensitive | Misc/CString.h | |
static CharType * Stristr
(
CharType* Str, |
Finds string in string, case insensitive (non-const version) | Misc/CString.h |
Stristr(const CharType , const CharType )
Description
Finds string in string, case insensitive Finds string in string, case insensitive
| Name | Stristr |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/CString.h |
| Include Path | #include "Misc/CString.h" |
static const CharType * Stristr
(
const CharType * Str,
const CharType * Find
)
Position in Str if Find was found, otherwise, NULL. If Find is non-null but empty, returns Str.
Parameters
| Name | Remarks |
|---|---|
| Str | The string to look through |
| Find | The string to find inside Str |
| Str | The string to look through |
| Find | The string to find inside Str |
Stristr(CharType , const CharType )
Description
Finds string in string, case insensitive (non-const version)
| Name | Stristr |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/CString.h |
| Include Path | #include "Misc/CString.h" |
static CharType * Stristr
(
CharType * Str,
const CharType * Find
)
Position in Str if Find was found, otherwise, nullptr. If Find is non-null but empty, returns Str.
Parameters
| Name | Remarks |
|---|---|
| Str | The string to look through |
| Find | The string to find inside Str |