Skip to content

Latest commit

 

History

History
26 lines (14 loc) · 322 Bytes

from_json.md

File metadata and controls

26 lines (14 loc) · 322 Bytes

Funzione from_json

Carica una stringa formattata JSON

Sintassi

from_json(string)

Argomenti

  • string stringa json

Esempi

  • from_json('{"qgis":"rocks"}') → { "qgis" : "rocks" }
  • from_json('[1,2,3]') → [1,2,3]

nota bene

--

osservazioni

--