Get Next Text Element
using System; using System.Globalization; using System.Threading; class Class1 { static void Main(string[] args) { String MyStr, OutBuf; MyStr = "The Quick programmer ran rings around the lazy manager"; for (int k=0; k<MyStr.Length; k++) { OutBuf = "Character at position " + k.ToString() + " = " + StringInfo.GetNextTextElement(MyStr, k); Console.WriteLine(OutBuf); } } }
1. | Get Text Element Enumerator |