How to insert space between each characters given by user

Hi,

Can you try the following expression?

String.Join("",yourString.Select(Function(c) c+" ")).Trim

Regards,

2 Likes