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 |
UFUNCTION (BlueprintPure, Category="Utilities|String")
static bool StartsWith
(
const FString & SourceString,
const FString & InPrefix,
ESearchCase::Type SearchCase
)
Remarks
Test whether this string starts with given string. true if this string begins with specified text, false otherwise
Parameters
| Name | Description |
|---|---|
| SearchCase | Indicates whether the search is case sensitive or not ( defaults to ESearchCase::IgnoreCase ) |