LlDumpList2String/fr
From Second Life Wiki
| Portail LSL | | | Fonctions | | | Évènements | | | Types | | | Constantes | | | Contrôle d'exécution | | | Bibliothèque de scripts | | | Tutoriels |
Description
Fonction: string llDumpList2String( list src, string séparateur );| 245 | N° de fonction |
| 0.0 | Délai |
| 10.0 | Energie |
Renvoie un string correspondant à la liste src convertie en chaîne de caractères en utilisant le séparateur entre chaque élément.
| • list | src | |||
| • string | séparateur |
Exemples
default { state_entry() { list ma_liste = [ 1, 2.0, "une chaîne", llGetOwner() ]; llOwnerSay("<" + llDumpList2String(ma_liste, "><") + ">"); } }
Voir également
Fonctions
| • llParseString2List | Convertit une chaîne en liste | |||
| • llParseStringKeepNulls | Convertit une chaîne en liste | |||
| • llCSV2List | Convertit une chaîne en liste | |||
| • llList2CSV | Convertit une liste en chaîne |
Articles
| • Typecast | Article sur les conversions de types |

