FString::ReplaceInline

Replace all occurrences of SearchText with ReplacementText in this string.

Windows
MacOS
Linux

References

Module

Core

Header

/Engine/Source/Runtime/Core/Public/Containers/UnrealString.h

Include

#include "Containers/UnrealString.h"

Source

/Engine/Source/Runtime/Core/Private/Containers/String.cpp

Syntax

int32 ReplaceInline
(
    const TCHAR * SearchText,
    const TCHAR * ReplacementText,
    ESearchCase::Type SearchCase
)

Remarks

Replace all occurrences of SearchText with ReplacementText in this string.

Returns

the number of occurrences of SearchText that were replaced.

Parameters

Parameter

Description

SearchText

the text that should be removed from this string

ReplacementText

the text to insert in its place

SearchCase

Indicates whether the search is case sensitive or not ( defaults to ESearchCase::IgnoreCase )

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss