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