DecodeDeltaSeries

Qubes 9.0 Returns a list of numbers from a Delta encoded string entered as a parameter.

Syntax

DecodeDeltaSeries(string)
string = The string which encapsulate the array you want to decode.

Remarks

string must be the result of an array of numerical values encoded by Delta.

Returns List() if string is empty or if the encapsulated arrays is empty.

If string does not encapsulates an array of integers only, there will be an error.

Examples

DecodeDeltaSeries('[0,1,1,1,-1,-1,2]') = List(1,2,3,2,1,3)
DecodeDeltaSeries('[2,4510,-4223,65,-152,-70,267]') = List(45.1,2.87,3.52,2,1.3,3.97)
DecodeDeltaSeries('[]') = List()
DecodeDeltaSeries('') = List()

Classification

Ranges