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.
関数を使用せずにすべての文字を小文字から大文字に変換するスクリプトを作成しようとしていuc()ます。
uc()
のようなものを使用することもできますが$str =~ tr/a-z/A-Z/、ucそれが重要な場合は、Unicodeサポートの方がおそらく優れています。
$str =~ tr/a-z/A-Z/
uc
正規表現の使用:
$str =~ s/(.)/\u$1/g;