Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TCString
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static CharType * Strcat
(
CharType* Dest, |
Strcat wrapper | Misc/CString.h | |
static CharType * Strcat
(
CharType(&) Dest, |
Strcat wrapper (templated version to automatically handle static destination array case) | Misc/CString.h | |
static CharType * Strcat
(
CharType* Dest, |
This version was deprecated because Strcat taking a size field does not match the CRT strcat, and on some platforms the size field was being ignored. | Misc/CString.h |
Strcat(CharType , const CharType )
Description
Strcat wrapper
| Name | Strcat |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/CString.h |
| Include Path | #include "Misc/CString.h" |
static CharType * Strcat
(
CharType * Dest,
const CharType * Src
)
destination string
Parameters
| Name | Remarks |
|---|---|
| Dest | destination string to copy to |
| Destcount | size of Dest in characters |
| Src | source string |
Strcat(CharType(&), const CharType *)
Description
Strcat wrapper (templated version to automatically handle static destination array case)
| Name | Strcat |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/CString.h |
| Include Path | #include "Misc/CString.h" |
template<SIZE_T DestCount>
static CharType * Strcat
(
CharType(&) Dest,
const CharType * Src
)
destination string
Parameters
| Name | Remarks |
|---|---|
| Dest | destination string to copy to |
| Src | source string |
Strcat(CharType , SIZE_T, const CharType )
Description
This version was deprecated because Strcat taking a size field does not match the CRT strcat, and on some platforms the size field was being ignored.
| Name | Strcat |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/CString.h |
| Include Path | #include "Misc/CString.h" |
static CharType * Strcat
(
CharType * Dest,
SIZE_T DestSize,
const CharType * Src
)