json.fromStrProp: Difference between revisions
Jump to navigation
Jump to search
m (Typographical tweaks) |
m (Conversion script moved page json.fromStrProp to Json.fromStrProp without leaving a redirect: Converting page title to first-letter uppercase) |
(No difference)
|
Revision as of 22:22, 9 February 2023
json.fromStrProp() Function
• Introduced in version 1.3b49
Creates a json object from a string property list.
Usage
json.fromStrProp(propList)
json.fromStrProp(propList,delim)
Parameters
propList
- String property list to extract data from.delim
- Delimiter between fields (default is";"
).
Example
[r:json.fromStrProp("a=1;b=44;c=12")]
Returns
{"a":1,"c":12,"b":44}