/// <summary>
 /// Splits string on spaces
 /// </summary>
 /// <param name="strIn"></param>
 /// <param name="removeEmpties"></param>
 /// <returns>IEnumerable after spliting and making lowercase</returns>
 public static IEnumerable <string> SplitAndStripOnSpacesToLower(this string strIn, bool removeEmpties = false)
 {
     return(MereUtils.SplitAndStripOnSpacesToLower(strIn, removeEmpties));
 }