Forum Discussion
Syndicate_Admin
3 years agoAdministrator
Need help
Hi Team,
I need help with the coding to separate the Email ID
Input: Chandra Bose S, Subash
Output: [email protected];[email protected]
= Text.Combine(List.Transform(Text.Split("Chandra Bose S, Subash ; V S, Srijith",";"),each Text.Format("#{1}.#{0}@123.com",List.Transform(Text.Split(_,","),each Text.Replace(Text.Trim(_)," ","-")))),";")
1 Reply
- wdx223_DanielCommunity Champion
= Text.Combine(List.Transform(Text.Split("Chandra Bose S, Subash ; V S, Srijith",";"),each Text.Format("#{1}.#{0}@123.com",List.Transform(Text.Split(_,","),each Text.Replace(Text.Trim(_)," ","-")))),";")