Difference between revisions of "LlList2CSV/fr"
Jump to navigation
Jump to search
Gally Young (talk | contribs) (Localized to french) |
Wiki Scribe (talk | contribs) m (Robot: <pre> -> <lsl>) |
||
Line 9: | Line 9: | ||
|caveats | |caveats | ||
|constants | |constants | ||
|examples=< | |examples=<lsl>default | ||
{ | { | ||
state_entry() | state_entry() | ||
Line 16: | Line 16: | ||
llOwnerSay(llList2CSV(my_list)); | llOwnerSay(llList2CSV(my_list)); | ||
} | } | ||
}</ | }</lsl> | ||
|helpers | |helpers | ||
|also_functions={{LSL DefineRow||[[llCSV2List/fr|llCSV2List]]|Converti un string en list}} | |also_functions={{LSL DefineRow||[[llCSV2List/fr|llCSV2List]]|Converti un string en list}} |
Latest revision as of 19:13, 4 August 2009
LSL Portail Francophone | LSL Portail Anglophone | Fonctions | Évènements | Types | Operateurs | Constantes | Contrôle d'exécution | Bibliothèque | Tutoriels |
Description
Fonction: string llList2CSV( list src );195 | N° de fonction |
0.0 | Delais |
10.0 | Energie |
Renvoie un string correspondant aux éléments du list src séparés par une virgule.
• list | src |
Cette fonction est équivalente à llDumpList2String(src, ", ");
Ne confondez pas la fonction avec le format CSV , ce n’est pas le format CSV!
Exemples
<lsl>default {
state_entry() { list my_list = [1, 2.0, "un string", llGetPos(), llGetRot(), llGetOwner()]; llOwnerSay(llList2CSV(my_list)); }
}</lsl>
Voir également
Fonctions
• | llCSV2List | – | Converti un string en list | |
• | llDumpList2String | – | Converti un list en string | |
• | llParseString2List | – | Converti un string en list | |
• | llParseStringKeepNulls | – | Converti un string en list |
Articles
• | Typecast | – | Article sur les conversions de types |
Vous cherchez encore des informations ? Peut-être cette page du LSLwiki pourra vous renseigner.