C# 文字列が全て大文字かどうか判定するサンプル
環境
Windows 11 Home 64bit
Microsoft Visual Studio Community 2022
構文
str == str.ToUpper()
ToUpper()の戻り値と元の文字列が同じかどうか比較します。
文字列が全て大文字かどうか判定するには、ToUpper()を使います。
使用例
using System; public class Example { public static void Main() { string strA = "HELLO, CSHARP"; string strB = "Hello, World"; Console.WriteLine(strA == strA.ToUpper()); Console.WriteLine(strB == strB.ToUpper()); } }
実行結果
True
False