string GetLine(string text, int lineNo) { string[] lines = text.Replace(" ","").Split(' '); return lines.Length >= lineNo ? lines[lineNo-1] : null; }