ExcelFormulaParser.Engine.ExcelUtilities.AddressTranslator.GetIntPart C# (CSharp) Method

GetIntPart() private method

private GetIntPart ( string address ) : int?
address string
return int?
        private int? GetIntPart(string address)
        {
            if (Regex.IsMatch(address, "[0-9]+"))
            {
                return int.Parse(Regex.Match(address, "[0-9]+").Value);
            }
            return null;
        }