Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
2023.1.0 - Français


toJSON

Convert scilab variable to JSON.

Syntax

result = toJSON(var)
result = toJSON(var, indent)

toJSON(var, filename)
toJSON(var, indent, filename)
toJSON(var, filename, indent)

Arguments

var

The Scilab variable to convert in JSON format.

filename

If a file name is given, the conversion is written in this file.

indent

If this argument is given, the result is indented. The value is the number of spaces.

result

Result is a string which contain the data converted to JSON. If a filename is given, no result is returned.

Description

This function convert a Scilab variable into a JSON string or a JSON file.

Examples

st = struct("status", "OK", "value", 12);
toJSON(st)
toJSON([1, 2, 3])
st = struct("test", ["a" "b"], "values", [1 2]);
toJSON(st, 4)

See also

History

VersionDescription
6.1 Function introduced.
Report an issue
<< http_upload Outils web url_split >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Mon May 22 12:39:49 CEST 2023