C# Char IsSymbol(String, Int32)
Description
Char IsSymbol(String, Int32)
indicates whether the
character at the specified position in a specified string is categorized
as a symbol character.
Syntax
Char.IsSymbol(String, Int32)
has the following syntax.
public static bool IsSymbol(
string s,
int index
)
Parameters
Char.IsSymbol(String, Int32)
has the following parameters.
s
- A string.index
- The position of the character to evaluate in s.
Returns
Char.IsSymbol(String, Int32)
method returns true if the character at position index in s is a symbol character; otherwise,
false.
Example
The following code example demonstrates IsSymbol.
/* w ww . j a v a 2 s . c o m*/
using System;
public class IsSymbolSample {
public static void Main() {
string str = "non-symbolic characters";
Console.WriteLine(Char.IsSymbol(str, 8)); // Output: "False"
}
}
The code above generates the following result.