Cari di Perl 
    Perl User Manual
Daftar Isi
(Sebelumnya) Return upper-case version of a ...Transliterate a string (Berikutnya)
Functions for SCALARs or strings

Return a string with just the next letter in upper case

Daftar Isi

  • ucfirst EXPR

  • ucfirst

    Returns the value of EXPR with the first character in uppercase(titlecase in Unicode). This is the internal function implementingthe \u escape in double-quoted strings.

    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) Return upper-case version of a ...Transliterate a string (Berikutnya)