String search Demo : String Search « Data Types « C# / C Sharp






String search Demo

String search Demo
 
/*
Learning C# 
by Jesse Liberty

Publisher: O'Reilly 
ISBN: 0596003765
*/

 using System;

 namespace StringSearch
 {
     public class TesterStringSearch
     {
         public void Run()
         {
             // create some strings to work with
             string s1 = "One,Two,Three Liberty Associates, Inc. ";

             // constants for the space and comma characters
             const char Space = ' ';
             const char Comma = ',';

             // array of delimiters to split the sentence with
             char[] delimiters = new char[]
             {
                 Space,
                 Comma
             };

             string output = "";
             int ctr = 1;

             // split the string and then iterate over the
             // resulting array of strings

             String[] resultArray = s1.Split(delimiters);

             foreach (String subString in resultArray)
             {
                 output += ctr++;
                 output += ": ";
                 output += subString;
                 output += "\n";
             }
             Console.WriteLine(output);

         }

         static void Main()
         {
             TesterStringSearch t = new TesterStringSearch();
             t.Run();
         }
     }
 }

           
         
  








Related examples in the same category

1.Search stringsSearch strings
2.use the IndexOf() and LastIndexOf() methods to search for substrings and characters;
3.String search: last indexString search: last index
4.String split and searchString split and search
5.Ensure End With SemiColon
6.String Starts With
7.Checks whether the string starts with a number or not
8.Checks whether the string starts with an alphabet or not
9.Finds a given string and enclosing it with tags provided.