I'm trying to split a var on "\r\n"
Here is my code:
          var tempRow = row.InnerText.ToString();
                //   "\r\n  08:05 PM\r\n  963\r\n  Chicago Cubs K. Hendricks -R\r\n  \r\n  \r\n  \r\n   \r\n  -1½\r\n  +130\r\n  \t\r\n......"
                string[] tempItem = Regex.Split(tempRow.ToString(), @"\\r\\n");
But my tempItem[] doesn't split and has 1 element.
 
    