コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
strings.to_upper
strings.to_upper(string_val)
説明
元の文字列をすべて大文字の英字で返します。
パラメータのデータ型
STRING
戻り値の型
STRING
コードサンプル
例 1
次の例では、指定された引数を大文字で返します。
strings.to_upper("example") = "EXAMPLE"
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-29 UTC。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["わかりにくい","hardToUnderstand","thumb-down"],["情報またはサンプルコードが不正確","incorrectInformationOrSampleCode","thumb-down"],["必要な情報 / サンプルがない","missingTheInformationSamplesINeed","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2025-07-29 UTC。"],[[["\u003cp\u003e\u003ccode\u003estrings.to_upper\u003c/code\u003e converts all alphabetic characters in a given string to uppercase.\u003c/p\u003e\n"],["\u003cp\u003eThis function is supported in Chronicle Rules and Search functionalities.\u003c/p\u003e\n"],["\u003cp\u003eThe input parameter for \u003ccode\u003estrings.to_upper\u003c/code\u003e must be a \u003ccode\u003eSTRING\u003c/code\u003e data type.\u003c/p\u003e\n"],["\u003cp\u003eThe function returns a \u003ccode\u003eSTRING\u003c/code\u003e where the alphabetic characters have been converted to uppercase.\u003c/p\u003e\n"]]],[],null,["### strings.to_upper\n\nSupported in: \n[Rules](/chronicle/docs/detection/default-rules) [Search](/chronicle/docs/investigation/udm-search) \n\n strings.to_upper(string_val)\n\n#### Description\n\nReturns the original string with all alphabetic characters in uppercase.\n\n#### Param data types\n\n`STRING`\n\n#### Return type\n\n`STRING`\n\n#### Code samples\n\n##### Example 1\n\nThe following example returns the supplied argument in uppercase. \n\n strings.to_upper(\"example\") = \"EXAMPLE\""]]