[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: Anfangsbuchstaben in Großbuchstaben ändern



Hallo Rüdiger!

> Anfangsbuchstaben jedes Wortes in Großbuchstaben wandeln?

Ich hab das in awk mal so gemacht:

#! /usr/bin/awk -f
{
for (i=1;i<=NF;i++){
        LOW=tolower (substr($i,2,length($i)));
        first=toupper(substr($i,1,1));
        printf first LOW " ";
}

-- 
Martin Weis
PGP-Key: http://datenroulette.de/pgp.php



Reply to: