WordCounter

By John Murray

###(https://github.com/JohnMurray93/CSharp-Week2-Independent-Project "See this project on Github")

Description

A simple application that takes user input word and string to check how many times that word appears in that string

Specs

  1. Will compare inputs to check if equal
  • Input 1: "confirm",
  • Input 2: "confirm"
  • Output: True
  1. Will test for number of reccurences of Input 1 in Input 2
  • Input 1: "confirm",
  • Input 2: "confirm confirm"
  • Output: 2
  1. Will test for number of reccurences of Input 1 in Input 2 with casing
  • Input 1: "confirm",
  • Input 2: "Confirm confirm Confirm confirm"
  • Output: 4
  1. Will test for number of reccurences of Input 1 in Input 2 with special characters
  • Input 1: "confirm",
  • Input 2: "confirm, confirm! confirm"
  • Output: 3

License

{MIT License}

Copyright (c) 2017 {John Murray}