Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/Kismet > API/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 bool Split
&40;
const FString & SourceString,
const FString & InStr,
FString & LeftS,
FString & RightS,
ESearchCase::Type SearchCase,
ESearchDir::Type SearchDir
&41;
Remarks
Splits this string at given string position case sensitive. true if string is split, otherwise false
Parameters
| Name | 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 ) |