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 |
UFUNCTION (BlueprintPure,
Meta=(DisplayName="Not Equal, Case Insenstive (String)", CompactNodeTitle="!="),
Category="Utilities|String")
static bool NotEqual_StriStri
(
const FString & A,
const FString & B
)
Remarks
Test if the input string are not equal (A != B), ignoring case differences Returns true if the input strings are not equal, false if they are equal
Parameters
Name | Description |
---|---|
A | The string to compare against |
B | The string to compare |