so geht es zumindest:
........
delim = " "
searchText = body.GetFormattedText( False , 0 )
tmpArr = FullTrim( Split( searchText, delim))
Dim i As Integer, tmpVar As String
For i = 0 To UBound( tmpArr)
tmpVar = tmpArr(i)
If tmpVar Like "*#*" Then
Print Len(tmpVar)
If Len(tmpVar) = 11 Then
MsgBox "11 Stellig"
End If
End If
Next
........