Converts an SRP List back into a BASIC+ variable.
Syntax
Var = SRP_List("GetVariable", Handle, Delim)
Returns
The BASIC+ representation of the list.
Parameters
Parameter | Description |
---|---|
Handle | Handle to an existing SRP List (REQUIRED) |
Delim | Delimiter to insert between elements (OPTIONAL, @FM by default) |
Remarks
The GetVariable service converts an SRP List back into a BASIC+ delimited list. The list will be delimited by the character you pass through the Delim parameter. If you omit the Delim parameter, then the list will be delimited by field marks.
Examples
// Get the list delimited by @FM List1 = SRP_List("GetVariable", Handle); // Get the list delimited by @SVM List2 = SRP_List("GetVariable", Handle, @SVM); // Get the list delimited by commas List3 = SRP_List("GetVariable", Handle, ",");