strPropFromVars

From RPTools Wiki
Revision as of 18:35, 21 January 2009 by Lindharin (talk | contribs) (New page: ==Function strPropFromVars== Creates a property string from the names and values of the variables listed in the varList string. ===Usage=== <source lang="mtmacro" line> [h: strPropFromVar...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Function strPropFromVars

Creates a property string from the names and values of the variables listed in the varList string.

Usage

[h: strPropFromVars(varList, varStyle) ]
  • varStyle is either "SUFFIXED" or "UNSUFFIXED". When fetching the values of the variables, the "SUFFIXED" option will look for variables with underscores appended to the given names. The output property string does not contain the underscores.

Examples

[H: props = "a=3 ; b=bob ; c=cow ; "]
[H: varsFromStrProp(props, "SUFFIXED")] <!-- creates variables a_, b_, c_ -->
[strPropFromVars("c,a,b", "SUFFIXED")]

(returns "c=cow ; a=3 ; b=bob ; "):