Cari di Perl 
    Perl User Manual
Daftar Isi
(Sebelumnya) Transliterate a stringReturn a string with just the ... (Berikutnya)
Functions for SCALARs or strings

Return upper-case version of a string

Daftar Isi

  • uc EXPR

  • uc

    Returns an uppercased version of EXPR. This is the internal functionimplementing the \U escape in double-quoted strings.It does not attempt to do titlecase mapping on initial letters. Seeucfirst for that.

    If EXPR is omitted, uses $_.

    This function behaves the same way under various pragma, such as in a locale,as lc does.

 
Source : perldoc.perl.org - Official documentation for the Perl programming language
Site maintained by Jon Allen (JJ)     See the project page for more details
Documentation maintained by the Perl 5 Porters
(Sebelumnya) Transliterate a stringReturn a string with just the ... (Berikutnya)