Quartz Composer JavaScript Reference © Cybero Designs  

length

Type Property
Format string. Length
Commentary
Returns the length of the character. Japanese one is counted as a character.
Sample code - QC 2 JavaScript
str = "Sample";
n = str.length;
outputs [0] = n;
Sample code - QC 3 JavaScript
function (__number output) main ()
{
var result = new Object();
str = "Sample";
n = str.length;
result.output = n;
return result;
}

Return to the Start Page