/
runSILInline
runSILInline
Description
Executes the script with the given arguments.
Parameters
Return Type
String[]
Example
string [] result = runSILInline("return \"SIL is \" + argv[0];", "awesome"); // returns "SIL is awesome"
string script = "number sum = 0; for (string s in argv) { sum += (number)s; } return sum;";
string [] argsArr = "1|2|3";
string [] result = runSILInline(script, argsArr); // returns "6"
If you don't need/have any arguments, pass an empty string for the args parameter.
You need to perform all the necessary escapes.
See also
Peacock
, multiple selections available,
Related content
runSILInline
runSILInline
More like this
runJobIn
runJobIn
More like this
runJobIn
runJobIn
More like this
runJobIn
runJobIn
More like this
runJobAt
runJobAt
More like this
executeGroovyScript
executeGroovyScript
More like this
Need support? Create a request with our support team.
Copyright © 2005 - 2025 Appfire | All rights reserved.