LlToLower/fr
From Second Life Wiki
| Portail LSL | | | Fonctions | | | Évènements | | | Types | | | Constantes | | | Contrôle d'exécution | | | Bibliothèque de scripts | | | Tutoriels |
Description
Fonction: string llToLower( string src );| 98 | N° de fonction |
| 0.0 | Délai |
| 10.0 | Energie |
Renvoie un 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 } }

