public bool IsStringNice(string input, string regex, int matches)
        {
            IStringRulesEngine engine = new StringRulesEngine();

            return engine.RegexEvaluation(input, regex, matches);
        }