LlDumpList2String/fr
Jump to navigation
Jump to search
| LSL Portail Francophone | LSL Portail Anglophone | Fonctions | Évènements | Types | Operateurs | Constantes | Contrôle d'exécution | Bibliothèque | Tutoriels |
Description
Fonction: string llDumpList2String( list src, string séparateurs );| 245 | N° de fonction |
| 0.0 | Delais |
| 10.0 | Energie |
Renvoie un string correspondant au list src convertit en string en utilisant les séparateurs entre chaque éléments .
| • list | src | |||
| • string | séparateurs |
Exemples
<lsl>default {
state_entry()
{
list my_list = [1, 2.0, "un string", llGetOwner()];
llOwnerSay("<" + llDumpList2String(my_list,"><") + ">");
}
}</lsl>
Notes
Utilisez llParseString2List ou llParseStringKeepNulls pour revenir en arrière.
Voir également
Fonctions
| • llParseString2List | Convertit un string en list | |||
| • llParseStringKeepNulls | Convertit un string en list | |||
| • llCSV2List | Convertit un string en list | |||
| • llList2CSV | Convertit un list en string |
Articles
| • Typecast | Article sur les conversions de types |
Vous cherchez encore des informations ? Peut-être cette page du LSLwiki pourra vous renseigner.