
CloudI.67773 (Customer) asked a question.
I'm trying to match to a wildcard in the function String.stringContains(user.displayName, "(.*)") ? If True : If False
How would someone accomplish the (.*) wildcard that could be present in the display name?

Thank you for posting on our Community Page.
A better solution (other than using a regex) would be to just use the following expression: user.displayName != "" ? if True : if False, which means that if the Display Name attribute has any value, the expression will pass the first statement (if True, as the value is not equals to nothing - empty string); if there is no value - if False statement is processed.
Thank you,
Paul Auer
TSE | Okta