Name

ucfirst — transform first character in input to uppercase

DESCRIPTION

The filter transforms first character in input to uppercase.

EXAMPLES

Example: Filter example

[filter ucfirst]abc def[/filter]
Example in action:
              
Abc def

            

NOTES

For more information on Perl Regular Expressions, pattern matching and character classes, see perlre(1).

AVAILABILITY

ucfirst is available in Interchange versions:

4.6.0-5.9.0 (git-head)

SOURCE

Interchange 5.9.0:

Source: code/Filter/ucfirst.filter
Lines: 20


# Copyright 2007 Interchange Development Group and others
# 
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.  See the LICENSE file for details.
# 
# $Id: ucfirst.filter,v 1.1 2007-07-13 08:22:47 racke Exp $

CodeDef ucfirst Filter
CodeDef ucfirst Description First character upper case
CodeDef ucfirst Routine <<EOR
sub {
use locale;
if ($Scratch->{mv_locale}) {
    POSIX::setlocale(LC_CTYPE, $Scratch->{mv_locale});
}
return ucfirst(shift);
}
EOR

AUTHORS

Interchange Development Group

SEE ALSO

DocBook! Interchange!