Advertisement
msmilkoff

SearchString

Sep 23rd, 2015
454
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. static void Main()
  2. {
  3. string text = Console.ReadLine().ToLower();
  4. string search = Console.ReadLine().ToLower();
  5.  
  6. int countOccurances = text.Split(new[] {search}, StringSplitOptions.None).Length-1;
  7. Console.WriteLine(countOccurances);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement