For eg of we have text like
\n 154765 Om Sairam\n Student Information
Need to extract name (Om Sairam)from that complete text using regular expression
By using this,getting only name (Om).Need to get sai ram also.
System.Text.RegularExpressions.Regex.Match(variablename,“(?<=\d{6}\s)(\S+)”).ToString
can anyone please help?