![]() |
UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
|
#include <TextFilterUtils.h>
String used by the text filter. The given string will be stored as uppercase since filter text always performs case-insensitive string comparisons, so this will minimize ToUpper calls.
|
default |
Default constructor
|
default |
Move and copy constructors
|
default |
| FTextFilterString::FTextFilterString | ( | const FString & | InString | ) |
Construct from a string
| FTextFilterString::FTextFilterString | ( | FString && | InString | ) |
| FTextFilterString::FTextFilterString | ( | FStringView | InString | ) |
| FTextFilterString::FTextFilterString | ( | const TCHAR * | InString | ) |
| FTextFilterString::FTextFilterString | ( | FName | InName | ) |
Construct from a name
|
inline |
Get the internal uppercase string of this filter string as an FName
|
inline |
Get the internal uppercase string of this filter string
| bool FTextFilterString::CanCompareNumeric | ( | const FTextFilterString & | InOther | ) | const |
Are the two given strings able to be compared numberically?
| bool FTextFilterString::CompareFString | ( | const FString & | InOther, |
| const ETextFilterTextComparisonMode | InTextComparisonMode | ||
| ) | const |
Compare this string against the other FString, using the text comparison mode provided
| bool FTextFilterString::CompareFStringView | ( | FStringView | InOther, |
| const ETextFilterTextComparisonMode | InTextComparisonMode | ||
| ) | const |
Compare this string against a string view which has previously been converted to uppercase
| bool FTextFilterString::CompareName | ( | const FName & | InOther, |
| const ETextFilterTextComparisonMode | InTextComparisonMode | ||
| ) | const |
Compare this string against the other FName, using the text comparison mode provided
| bool FTextFilterString::CompareNumeric | ( | const FTextFilterString & | InOther, |
| const ETextFilterComparisonOperation | InComparisonOperation | ||
| ) | const |
Compare this string against the other, converting them to numbers and using the comparison operator provided - you should have tested CanCompareNumeric first!
| bool FTextFilterString::CompareText | ( | const FTextFilterString & | InOther, |
| const ETextFilterTextComparisonMode | InTextComparisonMode | ||
| ) | const |
Compare this string against the other, using the text comparison mode provided
|
inline |
Is the internal string empty?
| FTextFilterString & FTextFilterString::operator= | ( | const FString & | InString | ) |
|
default |
Move and copy assignment
| FTextFilterString & FTextFilterString::operator= | ( | const TCHAR * | InString | ) |
| FTextFilterString & FTextFilterString::operator= | ( | FName | InName | ) |
| FTextFilterString & FTextFilterString::operator= | ( | FStringView | InString | ) |
|
default |