Hi Team,
“jgfrujdb uubgdnmd\r\nPlan\r\n9 US: Missouri\r\nAMB# 002915\r\nNAIC# 27642\r\nFEIN# 431427497\r\nei\r\nA gio Q * ki igi\r\nHome Recent Company My Industry Industry\r\nActivity Search Companies Research News”,
in this string i need - ‘002915’ and ‘Home Recent Company My Industry Industry’ for this please send regex
Hi @Gandham_Jyothi
Use this regex in FInd Matching Patterns activity and store the output in First Match Property :
\b(?<=AMB#\s)(\d+)\b
Or
Use this in Assign activity:
strvar= "jgfrujdb uubgdnmd\r\nPlan\r\n9 US: Missouri\r\nAMB# 002915\r\nNAIC# 27642\r\nFEIN# 431427497\r\nei\r\nA gio Q * ki igi\r\nHome Recent Company My Industry Industry\r\nActivity Search Companies Research News,"
Match= System.Text.RegularExpressions.Regex.Match(strvar,"\b(?<=AMB#\s)(\d+)\b").Value