Difference between revisions of "LlToLower/fr"

From Second Life Wiki
Jump to navigation Jump to search
(Localized to french)
 
m (proofread)
Line 10: Line 10:
|constants
|constants
|examples=<pre>
|examples=<pre>
string msg = "j’aime le SUCRE!";
string msg = "j’aime le NUTTELA!";
string p = llToLower(msg);
string p = llToLower(msg);
llOwnerSay(p);//renvoie "j’aime le sucre!"
llOwnerSay(p);//renvoie "j’aime le nuttela!"
</pre>
</pre>
|helpers
|helpers

Revision as of 14:30, 21 March 2008

Description

Fonction: string llToLower( string src );

Renvoie un string correspondant au string src en lettres minuscules.

• string src

Exemples

string msg = "j’aime le NUTTELA!";
string p = llToLower(msg);
llOwnerSay(p);//renvoie "j’aime le nuttela!"

Voir également

Fonctions

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