Navigation
Unreal Engine C++ API Reference > Runtime > Engine > Kismet > UKismetStringLibrary
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 |
static int32 ReplaceInline
&40;
FString & SourceString,
const FString & SearchText,
const FString & ReplacementText,
ESearchCase::Type SearchCase
&41;
Remarks
Replace all occurrences of SearchText with ReplacementText in this string. the number of occurrences of SearchText that were replaced.
Parameters
Name | 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 ) |