public string[] ExtraColonInString(string IngredientNamePriceString)
        {
            var split = new SplitLines();
            var SplitIngredientNamePriceArray = split.SplitLineAtColon(IngredientNamePriceString);
            var NumberOfColons  = IngredientNamePriceString.Count(x => x == ':');
            var IngredientName  = "";
            var IngredientPrice = "";
            var AdjustedIngredientNamePriceArray = new string[2] {
                IngredientName, IngredientPrice
            };

            if (NumberOfColons > 3)
            {
                IngredientName  = SplitIngredientNamePriceArray[1];
                IngredientPrice = SplitIngredientNamePriceArray[3];
                AdjustedIngredientNamePriceArray[0] = IngredientName;
                AdjustedIngredientNamePriceArray[1] = IngredientPrice;
            }
            return(AdjustedIngredientNamePriceArray);
        }