System.Character.TCharacter.ToUpper

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

class function ToUpper(C: Char): Char; overload; inline; static;
class function ToUpper(C: UCS4Char): UCS4Char; overload; inline; static;
class function ToUpper(const S: string): string; overload; inline; static;

C++

static System::WideChar __fastcall ToUpper(System::WideChar C)/* overload */;
static unsigned __fastcall ToUpper(unsigned C)/* overload */;
static System::UnicodeString __fastcall ToUpper(const System::UnicodeString S)/* overload */;

プロパティ

種類 可視性 ソース ユニット
function public
System.Character.pas
System.Character.hpp
System.Character TCharacter

説明

Unicode 仕様に従って、UTF-16 文字を対応する大文字に変換します。

このメソッドはオーバーロード(多重定義)されています。

Unicode 仕様に従って、UTF-16 文字 C を対応する大文字に変換します。対応する大文字が存在しない場合は、渡された値を返します。

文字列 S のコピー(すべての文字が Unicode 仕様に従って対応する大文字に変換されている)を返します。

関連項目