StringExtensions.IsCharacterString(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines whether a string contains only letters.
public static bool IsCharacterString (this string str);
static member IsCharacterString : string -> bool
<Extension()>
Public Function IsCharacterString (str As String) As Boolean
Parameters
- str
- String
The string to test.
Returns
true
if the string contains only letters; otherwise, false
.