Data Separation

HI @bitubawankar,

Mobile number:
Use Matches activity
Properties
Input : strvalue
Pattern : ((?<=Mobile No.:).*(?=, E-mail:))
Result: iEnumResult ->IEnumberable
after that use assign activity to get the data
strMobileNumber=iEnumResult (0).ToString()

Email:
Use Matches activity
Properties
Input : strvalue
Pattern : ((?<=Email :).*(?=Website))
Result: iEnumResult ->IEnumberable
after that use assign activity to get the data
strEmail=iEnumResult (0).ToString()

create string ->arrvalue
arrvalue= strvalue.Split(Environment.NewLine.ToArray, StringSplitOptions.RemoveEmptyEntries)

strName=arrvalue(1).ToString

Regards,
Arivu