PowerTip: Adjusting the Case of a String

Doctor Scripto

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()

 

 

0 comments

Discussion is closed.

Feedback usabilla icon