varsFromStrProp: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 7: Line 7:


|usage=
|usage=
<source lang="mtmacro" line>
<source lang="mtmacro">
varsFromStrProp(props)
varsFromStrProp(props)
</source>
<source lang="mtmacro" line>
varsFromStrProp(props, decor)
varsFromStrProp(props, decor)
</source>
</source>
Line 16: Line 14:
|examples=
|examples=
<source lang="mtmacro" line>
<source lang="mtmacro" line>
    [h: varsFromStrProp("a=blah; b=doh; c=meh")][r: a] [r: b] [r: c]
[h: varsFromStrProp("a=blah; b=doh; c=meh")]
[r: a] [r: b] [r: c]
</source>
</source>
Returns  
'''Returns'''
    blah doh meh
<source lang="mtmacro">
 
blah doh meh
</source>
|also=
{{func|strPropFromVars}}
|changes=
|changes=
{{change|1.3b49|Added {{code|suffixed}} or {{code|unsuffixed}} parameter option.}}
{{change|1.3b49|Added {{code|suffixed}} or {{code|unsuffixed}} parameter option.}}

Revision as of 01:40, 15 August 2019

 This article is a stub, you can help the RPTools Wiki project by contributing content to expand this article.
 This article needs: Documentation on how the decor(suffixed/unsuffixed) parameter works.

varsFromStrProp() Function

Introduced in version 1.3b42
Creates variables from a string property list with the values assigned to variables with the names of the keys in the string property list. The function returns the number of variables that were created.

Usage

varsFromStrProp(props)
varsFromStrProp(props, decor)

Examples

[h: varsFromStrProp("a=blah; b=doh; c=meh")]
[r: a] [r: b] [r: c]

Returns

blah doh meh

See Also

Version Changes

  • 1.3b49 - Added suffixed or unsuffixed parameter option.