strPropFromVars: Difference between revisions
Jump to navigation
Jump to search
Verisimilar (talk | contribs) m (Applied Template:MacroFunction) |
Verisimilar (talk | contribs) m (Macros:Functions:strPropFromVars moved to strPropFromVars) |
(No difference)
|
Revision as of 05:22, 9 March 2009
strPropFromVars() Function
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")]