Difference between revisions of "LlList2CSV/fr"

From Second Life Wiki
Jump to navigation Jump to search
(Localized to french)
 
m (Robot: <pre> -> <lsl>)
 
Line 9: Line 9:
|caveats
|caveats
|constants
|constants
|examples=<pre>default
|examples=<lsl>default
{
{
     state_entry()
     state_entry()
Line 16: Line 16:
         llOwnerSay(llList2CSV(my_list));         
         llOwnerSay(llList2CSV(my_list));         
     }
     }
}</pre>
}</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 20:13, 4 August 2009

Description

Fonction: string llList2CSV( list src );

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 "Wikipedia logo"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.