json.fromStrProp: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
No edit summary
 
(5 intermediate revisions by 3 users not shown)
Line 3: Line 3:
|version=1.3b49
|version=1.3b49
|description=
|description=
Creates a [[Macros:json object|json object]] from a [[Macros:string property list|string property list]].  
Creates a [[JSON Object|json object]] from a [[Macros:string property list|string property list]].  


|usage=
|usage=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[h: jobj = json.fromStrProp(strProp)]
json.fromStrProp(propList)
</source>
json.fromStrProp(propList,delim)
</syntaxhighlight>
'''Parameters'''
{{param|propList|String property list to extract data from.}}
{{param|delim|Delimiter between fields (default is {{code|";"}}).}}


|example=
|example=
<source lang="mtmacro" line>
<syntaxhighlight lang="mtmacro" line>
[r:json.fromStrProp("a=1;b=44;c=12")]
[r:json.fromStrProp("a=1;b=44;c=12")]
</source>
</syntaxhighlight>


Returns
Returns

Latest revision as of 17:46, 15 March 2023

json.fromStrProp() Function

Introduced in version 1.3b49

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}