UKismetStringLibrary::Split

Splits this string at given string position case sensitive.

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 bool Split
(
    const FString & SourceString,
    const FString & InStr,
    FString & LeftS,
    FString & RightS,
    ESearchCase::Type SearchCase,
    ESearchDir::Type SearchDir
)

Remarks

Splits this string at given string position case sensitive.

Returns

true if string is split, otherwise false

Parameters

Parameter

Description

InStr

The string to search and split at

LeftS

out the string to the left of InStr, not updated if return is false

RightS

out the string to the right of InStr, not updated if return is false

SearchCase

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

SearchDir

Indicates whether the search starts at the begining 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