String - IsPunctuation
Indicates whether the character at the specified position in a specified string is categorized as a punctuation mark.
public static void Main() { string input = ".NET 4.7.2"; Console.WriteLine("Is each of the following characters a punctuation?"); for (int i = 0; i < input.Length; i++) { // C# Extension Method: String - IsPunctuation var result = input.IsPunctuation(i); Console.WriteLine("{0} : {1} ", input[i], result); } }
View Source
using System; public static partial class Extensions { /// <summary> /// Indicates whether the character at the specified position in a specified string is categorized as a /// punctuation mark. /// </summary> /// <param name="s">A string.</param> /// <param name="index">The position of the character to evaluate in .</param> /// <returns>true if the character at position in is a punctuation mark; otherwise, false.</returns> public static Boolean IsPunctuation(this String s, Int32 index) { return Char.IsPunctuation(s, index); } }