You can simplify the process by:
Convert the text to all lower case:
Dim sConversionString as String = TextBox1.Text.ToLower()
Then do something like the following:
If sConversionString.Contains("n229") Or sConversionString.Contains("n 229") Then
'Do Work
End If