UKismetStringLibrary::ReplaceInline

Replace all occurrences of SearchText with ReplacementText in this string.

Windows
MacOS
Linux

References

Module

Engine

Header

/Engine/Source/Runtime/Engine/Classes/Kismet/KismetStringLibrary.h

Include

#include "Kismet/KismetStringLibrary.h"

Source

/Engine/Source/Runtime/Engine/Private/KismetStringLibrary.cpp

Syntax

static int32 ReplaceInline
(
    FString & SourceString,
    const FString & SearchText,
    const FString & 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