Quantcast
Channel: Hey, Scripting Guy! Blog
Viewing all articles
Browse latest Browse all 3333

PowerTip: Convert All Uppercase String to Lowercase

$
0
0

SummaryUse Windows PowerShell to convert a string to all lowercase characters.

Hey, Scripting Guy! Question How can I use Windows PowerShell to convert a string that is in all uppercase to all lowercase characters?

Hey, Scripting Guy! Answer Use the ToLower method from the String class:

"STRING".ToLower()


Viewing all articles
Browse latest Browse all 3333

Trending Articles