LlToLower/fr: Difference between revisions
Jump to navigation
Jump to search
Gally Young (talk | contribs) Localized to french |
proofing |
||
| (One intermediate revision by one other user not shown) | |||
| Line 9: | Line 9: | ||
|caveats | |caveats | ||
|constants | |constants | ||
|examples=< | |examples=<lsl>default | ||
string msg = "j’aime le | { | ||
string p = llToLower(msg); | state_entry() | ||
llOwnerSay(p);// | { | ||
</ | string msg = "j’aime le NUTTELA!"; | ||
string p = llToLower(msg); | |||
llOwnerSay(p);//dira "j’aime le nuttela!" au propriétaire de l'objet | |||
} | |||
}</lsl> | |||
|helpers | |helpers | ||
|also_functions={{LSL DefineRow||[[llToUpper/fr|llToUpper]]|Met en majuscules}} | |also_functions={{LSL DefineRow||[[llToUpper/fr|llToUpper]]|Met en majuscules}} | ||
Latest revision as of 07:40, 18 June 2008
| LSL Portail Francophone | LSL Portail Anglophone | Fonctions | Évènements | Types | Operateurs | Constantes | Contrôle d'exécution | Bibliothèque | Tutoriels |
Description
Fonction: string llToLower( string src );| 98 | N° de fonction |
| 0.0 | Delais |
| 10.0 | Energie |
Renvoie un string correspondant au string src en lettres minuscules.
| • string | src |
Exemples
<lsl>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
}
}</lsl>
Voir également
Fonctions
| • | llToUpper | – | Met en majuscules |
Vous cherchez encore des informations ? Peut-être cette page du LSLwiki pourra vous renseigner.