Powershellでアルファベットの大文字化/小文字化する方法

Powershell概要

minegishirei.hatenablog.com

参考記事

この記事は以下の書籍を参考に執筆されました。 詳しい内容の確認はこちらからお願いいたします。

大文字小文字変換

.ToUpper(),.ToLower()メソッドを使おう

大文字化

サンプル

"Hello World".ToUpper()

実行結果

HELLO WORLD

小文字化

サンプル

"Hello World".ToLower()
hello world

title:Powershellで文字列成形する方法

description:powershellの文字列整形は非常に強力です。powershellクックブックで紹介されていたレシピの備忘録を公開します。 img:https://cdn.slidesharecdn.com/ss_thumbnails/windows-powershell-cookbook-the-complete-guide-to-scripting-microsofts-command-shell-190312151315-thumbnail-4.jpg?cb=1552403608 category_script:page_name.startswith("1")

page:https://minegishirei.hatenablog.com/entry/2023/02/15/112111