How to Get First Letter of every word in a String

@aliaga,

Try with the following code,

"First Name of string".Split(" "c).[Select](Function(x) x.ToUpper.First()).ToArray()
2 Likes