RealDocs

UKismetStringLibrary::NotEqual_StriStri

function Engine Blueprint Since unknown
#include "Kismet/KismetStringLibrary.h"
Access: public Specifiers: staticBlueprintPure

Description

Tests whether two strings are not equal, ignoring case differences. The inverse of EqualEqual_StriStri.

Caveats & Gotchas

  • Ignores case but still treats whitespace and punctuation differences as making the strings unequal.
  • The header's own DisplayName metadata has a typo ("Case Insenstive"); the node still functions correctly despite the misspelled label.

Signature

static bool NotEqual_StriStri(const FString& A, const FString& B)

Parameters

Name Type Description Default
A const FString& The string to compare against.
B const FString& The string to compare.

Return Type

bool

Example

Detect a changed tag name regardless of case C++
if (UKismetStringLibrary::NotEqual_StriStri(OldTag, NewTag))
{
    RetagActor(NewTag);
}

Version History

Introduced in: unknown

Version Status Notes
5.6 stable

Feedback

Was this helpful?

Suggest an edit

Select a field above to begin editing.