LlToLower/fr

From Second Life Wiki

Page Principale > LlToLower > LlToLower/fr
Jump to: navigation, search

Contents

Description

Fonction: string llToLower( string src );

Renvoie un string correspondant au string src en lettres minuscules.

• string src

Exemples

default
{
    state_entry()
    {
        string msg = "j’aime le NUTTELA!";
        string p = llToLower(msg);
        llOwnerSay(p);//dira "j’aime le nuttela!" au propriétaire de l'objet
    }
}

Voir également

Fonctions

•  llToUpper Met en majuscules
Vous cherchez encore des informations ? Peut-être cette page du LSLwiki pourra vous renseigner.
In other languages