Get Next Text Element : String Info « Development Class « C# / C Sharp






Get Next Text Element

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);
         }         
   }
}

           
       








Related examples in the same category

1.Get Text Element EnumeratorGet Text Element Enumerator