Contains Any Of
PureContainsAnyOfReturns true if the input string contains any of the provided substrings.
Type: Pure (no side effects)
Category: Fortuna|String & Text
Keywords: string & text
Inputs
| Name | Type | Default | Description |
|---|---|---|---|
| Input | FString | — | Input parameter |
| Substrings | TArray<FString> | — | Substrings parameter |
| bIgnoreCase | bool | true | bIgnoreCase parameter |
Outputs
| Name | Type | Description |
|---|---|---|
| ReturnValue | bool | ReturnValue output |
Example Use Cases
Example 1
Chat filter checking for multiple banned words.
Example 2
Search matching against multiple keywords.