json.toStrProp: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
m (Fixing wikilink)
Line 3: Line 3:
|version=1.3b49
|version=1.3b49
|description=
|description=
Creates a [[Macros:string property list|string list]] from a [[Macros:json object|json object]]. With the specified delimiter, if a delimiter is not provided then the default value of ';' is used.
Creates a [[Macros:string property list|string list]] from a [[JSON Object|json object]]. With the specified delimiter, if a delimiter is not provided then the default value of ';' is used.


|usage=
|usage=

Revision as of 09:12, 24 July 2011

json.toStrProp() Function

Introduced in version 1.3b49
Creates a string list from a json object. With the specified delimiter, if a delimiter is not provided then the default value of ';' is used.

Usage

[h: strProp = json.toStrProp(jobj)]
[h: strProp = json.toStrProp(jobj, delim)]

Example

  [h:a=json.fromStrProp("a=1;b=44;c=12")] [r:json.toStrProp(a)]
  [h:a=json.fromList("a,1,g,4")][r:json.toStrProp(a)]

Returns

 a=1;c=12;b=44
0=a;1=1;2=g;3=4