FString::Find

Searches the string for a substring, and returns index into this string of the first found instance.

Windows
MacOS
Linux

References

Module

Core

Header

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

Include

#include "Containers/UnrealString.h"

Syntax

int32 Find
(
    const FString & SubStr,
    ESearchCase::Type SearchCase,
    ESearchDir::Type SearchDir,
    int32 StartPosition
) const

Remarks

Searches the string for a substring, and returns index into this string of the first found instance. Can search from beginning or end, and ignore case or not.

Parameters

Parameter

Description

SubStr

The string to search for

StartPosition

The start character position to search from

SearchCase

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

SearchDir

Indicates whether the search starts at the beginning or at the end ( defaults to ESearchDir::FromStart )

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