deleteStrProp: Difference between revisions
Jump to navigation
Jump to search
(New page: ==Function deleteStrProp== Returns a copy of the [[Macros:string proper ===Usage=== <source lang="mtmacro" line> [h: val = ceil(num)] [h: val = ceiling(num)] </source> ===Examples=== <so...) |
Full Bleed (talk | contribs) m (Added delim to usage and added parameter fields.) |
||
(9 intermediate revisions by 5 users not shown) | |||
Line 1: | Line 1: | ||
= | {{MacroFunction | ||
Returns a copy of the [[Macros:string | |name=deleteStrProp | ||
|version=1.3b42 | |||
|description=Returns a copy of the [[Macros:string property list|string property list]] with the specified key removed. | |||
|usage= | |||
< | <syntaxhighlight lang="mtmacro" line> | ||
deleteStrProp(proplist, key) | |||
deleteStrProp(proplist, key, delim) | |||
</ | </syntaxhighlight> | ||
'''Parameters''' | |||
{{param|proplist|String property list to extract data from.}} | |||
{{param|key|Key within string to extract. This cannot include a space.}} | |||
{{param|delim|Delimiter between fields (default is ";").}} | |||
|example= | |||
< | <syntaxhighlight lang="mtmacro" line> | ||
[r: | [r: deleteStrProp("a=blah; b=doh; c=meh", "a")] | ||
</syntaxhighlight> | |||
Returns "b=doh; c=meh". | |||
}} | |||
[[Category:String Property List Function]] | |||
</ | |||
Returns | |||
[ | |||
Latest revision as of 23:59, 14 November 2024
deleteStrProp() Function
• Introduced in version 1.3b42
Returns a copy of the string property list with the specified key removed.
Usage
deleteStrProp(proplist, key)
deleteStrProp(proplist, key, delim)
Parameters
proplist
- String property list to extract data from.key
- Key within string to extract. This cannot include a space.delim
- Delimiter between fields (default is ";").
Example
[r: deleteStrProp("a=blah; b=doh; c=meh", "a")]