Hi There,
Sample Input:-ABC@XYZ.com;AAA@ZZZ.com;ABC@XYZ.com;AAA@ZZZ.com
Need output like this
ABC@XYZ.com;AAA@ZZZ.com;
Hi There,
Sample Input:-ABC@XYZ.com;AAA@ZZZ.com;ABC@XYZ.com;AAA@ZZZ.com
Need output like this
ABC@XYZ.com;AAA@ZZZ.com;
Hi @anbarasu.k
Adding to @Pradeep_Shiv answer
Try this
String.Join( β;β,InputVar.Split(";"c).ToList().Distinct)
Regards,
Nived N
Happy Automation
itβs Working fine. Thanks
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.