Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
文字列の最初の文字を大文字に変換するための構文(大文字など)はpascalにありますか?最初の文字のみ。
はい; 関数を使用する場合がありますUpCase(ほとんどのPascalバリアントに関数があることを願っています)。以下に、指定されたS文字列の最初の文字を大文字にするための使用方法を示します。
UpCase
S
function UpCaseFirstChar(const S: string): string; begin Result := S; if Length(Result) > 0 then Result[1] := UpCase(Result[1]); end;