Ankündigung

Einklappen
Keine Ankündigung bisher.

X1 Logic Node: Scripting - One block. Endless possibilities.

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

    #16
    Zitat von willisurf Beitrag anzeigen
    Is there a small copy&paste error in the string examples?
    Code:
    OUT1 = IN1.toString().substring(0, 5); // Take the first 5 characters (start at character 0)
    
    OUT1 = IN1.toString().substring(0, 5); // Trim spaces​

    you are right! The last one should be:
    PHP-Code:
    OUT1 IN1.toString().trim(); 
    ​I will correct the examples. Thanks!

    Kommentar

    Lädt...
    X