- uc EXPR
- uc
-
Returns an uppercased version of EXPR. This is the internal function implementing the
\U
escape in double-quoted strings. It does not attempt to do titlecase mapping on initial letters. Seeucfirst
for that.EXPR を大文字に変換したものを返します。 これは、ダブルクォート文字列における、
\U
エスケープを 実装する内部関数です。 先頭文字の タイトル文字マッピングは試みません。 このためにはucfirst
を参照してください。If EXPR is omitted, uses
$_
.EXPR が省略されると、
$_
を使います。This function behaves the same way under various pragmas, such as in a locale, as
lc
does.この関数は、ロケールのようなさまざまなプラグマの影響下では、
lc
と同様に振る舞います。