ExcelFormulaParser.Engine.Excel.Functions.Text.Replace.GetFirstPart C# (CSharp) Method

GetFirstPart() private method

private GetFirstPart ( string text, int startPos ) : string
text string
startPos int
return string
        private string GetFirstPart(string text, int startPos)
        {
            return text.Substring(0, startPos - 1);
        }