Type Method
Format string. Substring (start position, end position)
Commentary
string from the specified range. Start position is left of the first string is 0 second, followed by a second, and after an increase.
Sample code - QC 2 JavaScript
str = "ABCDEFG";
outputs [0] = str.substring (2,5);
Sample code - QC 3 JavaScript
function (__string output) main ()
{
var result = new Object();
str = "ABCDEFG";
result.output = str.substring(2,5);
return result;
}