Forum Discussion
Sagar Patel
Apr 17, 2019Copper Contributor
Convert Upper case to Lower Case on CSV content through PowerShell
Hello, I tried following PowerShell script and it work well but some how it convert whole string from Upper to lower. i need to keep first letter of string as upper , do not want to cover as low...
VasilMichev
Apr 18, 2019MVP
Something like this should do it:
($b[0] + $b.Substring(1).ToLower()).Trim(" ") -split ...Sagar Patel
Apr 18, 2019Copper Contributor
Thank you!
It is still returning all lower case instead of first letter capital and reset are lower case.