Hi,
Tom, Anne, Susan, Linda,
How to sort this string ascendingly?
I tried to use something like this: String.Join(" “, strBU.Split(” "c).OrderBy())
but I don’t know how to end it to make it correct.
Hi,
Tom, Anne, Susan, Linda,
How to sort this string ascendingly?
I tried to use something like this: String.Join(" “, strBU.Split(” "c).OrderBy())
but I don’t know how to end it to make it correct.
Hi Paulina, try this:
String.Join(",",strBU.Split(",".ToArray).OrderBy(function(x) x).ToList)