Regular expression - dynamic strings

Sure @Lalitha_Selvaraj

str_Text = str_Text.Replace("_","")

Matches = System.Text.RegularExpressions.Regex.Matches(str_Text,"\d+.*Fu[\s\S]*?\d+\s*\-\s*\d+.*")

Name = System.Text.RegularExpressions.Regex.Match(MainMatch.ToString,"(?<=Name.*)([A-Za-z ]+\s*.*)(?=2\.)").Value.Replace(" ","").Trim

DOB = System.Text.RegularExpressions.Regex.Match(MainMatch.ToString,"(?<=yyyy.*)(\d+.*)").Value.Replace(" ","").Trim

Regards