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

PowerTip: Adjusting the Case of a String

$
0
0

Summary: Use Windows PowerShell to adjust the case of an entire string.

Hey, Scripting Guy! Question How can I adjust the case of an entire string?

Hey, Scripting Guy! Answer Charlotte PowerShell User Group member Brian Wilhite says: One way to adjust the case (upper or lower) of an entire string object is to call the ToUpper or ToLower methods of the string object.

(‘this string should be upper case’).ToUpper()

(‘THIS STRING SHOULD BE LOWER CASE’).ToLower()

 

 


Viewing all articles
Browse latest Browse all 3333

Trending Articles