Beispiel #1
0
        public bool GetGalaxyNumber(string message)
        {
            var reg = Regex.Match(message, @"(^\w+) is ([IVXLCDM])$");

            if (reg.Success)
            {
                string symbol = reg.Groups[2].Value;
                //添加直接定义值
                _mapper.AddGalaxyNumbers(reg.Groups[1].Value, Tool.ToRomanNumeral(symbol));
                return(true);
            }
            return(false);
        }