encode: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
(3 intermediate revisions by the same user not shown) | |||
Line 5: | Line 5: | ||
|usage= | |usage= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
encode(str) | encode(str) | ||
</ | </syntaxhighlight> | ||
|example= | |example= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[h: innerPropList = encode("val1=blah ; val2=blahblah")] | [h: innerPropList = encode("val1=blah ; val2=blahblah")] | ||
[h: props = setStrProp(props, key, innerPropList)] | [h: props = setStrProp(props, key, innerPropList)] | ||
</ | </syntaxhighlight> | ||
|also= | |||
{{func|decode}} | |||
}} | }} | ||
[[Category:String Function]] | [[Category:String Function]] |
Latest revision as of 23:59, 27 April 2023
encode() Function
• Introduced in version 1.3b48
Encodes a string that was can be decoded with the decode() function. The decode() and encode() functions can be used to encode a property list so that it can be embedded within another property list.
Usage
encode(str)
Example
[h: innerPropList = encode("val1=blah ; val2=blahblah")]
[h: props = setStrProp(props, key, innerPropList)]