Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FString
Description
Replaces certain characters with the "escaped" version of that character (i.e. replaces "\n" with "\n"). The characters supported are: { , \r, \t, ', ", \ }.
| Name | ReplaceCharWithEscapedCharInline |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/UnrealString.h.inl |
| Include Path | #include "Containers/UnrealString.h.inl" |
| Source | /Engine/Source/Runtime/Core/Private/Containers/String.cpp.inl |
void ReplaceCharWithEscapedCharInline
(
const TArray < ElementType > * Chars
)
Parameters
| Name | Remarks |
|---|---|
| Chars | by default, replaces all supported characters; this parameter allows you to limit the replacement to a subset. |