Here is an expression which will return the character position that the asterisk is found within the text string:
FindAsterisk: InStr([TextFieldName],Chr(42))
The key is that the Asterisk has an ASCII code of 42, so Chr(42) will return as asterisk, and the formula won't think you are entering in a wild card.