mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-10 13:06:59 -04:00
dfae1b2729
Added I_DUP instruction git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@1007 0fc631ac-6414-0410-93d0-97cfa31319b6
25 lines
865 B
Plaintext
25 lines
865 B
Plaintext
Function: count_chosen
|
|
|
|
DOC_MSE_VERSION: since 0.3.7
|
|
|
|
--Usage--
|
|
> count_chosen(choices: some_string, some_multiple_choice_value)
|
|
|
|
Coint the number of choices that are selected in a [[type:value#multiple_choice|multiple choice value]].
|
|
|
|
If the @choices@ parameter is given then only choices from that list are counted.
|
|
|
|
--Parameters--
|
|
! Parameter Type Description
|
|
| @input@ [[type:string]] Multiple choice value to look in.
|
|
| @choices@ optional [[type:string]] A comma separated list of choices to look for.
|
|
|
|
--Examples--
|
|
> count_chosen("") == 0
|
|
> count_chosen("red") == 1
|
|
> count_chosen("red, green") == 2
|
|
> count_chosen("red, green", choices: "red,blue") == 1
|
|
|
|
--See also--
|
|
| [[fun:chosen]] Is a given choice selected in a multiple choice value?
|