RealDocs

UKismetTextLibrary::NotEqual_IgnoreCase_TextText

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

Description

Returns true if A and B are linguistically not equal, ignoring case differences. Backs the case-insensitive '!=' compact node for FText in Blueprint.

Caveats & Gotchas

  • This is the logical negation of EqualEqual_IgnoreCase_TextText, so the same culture-aware case-folding caveats apply.
  • Prefer NotEqual_TextText when exact casing is meaningful, such as validating a user-entered code.

Signature

static bool NotEqual_IgnoreCase_TextText(const FText& A, const FText& B);

Parameters

Name Type Description Default
A const FText& First text value to compare.
B const FText& Second text value to compare.

Return Type

bool

Example

Case-insensitive change detection C++
if (UKismetTextLibrary::NotEqual_IgnoreCase_TextText(LastStatus, CurrentStatus))
{
    UpdateStatusDisplay(CurrentStatus);
}

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.