TLO:Arg
From Lavish Software Wiki
[edit]
Forms
- string Arg[#,...]
- Retrieves a given argument by number, out of all following arguments
[edit]
Examples
- ${Arg[1,this]}
- "this"
- ${Arg[2,one,two]}
- "two"
- ${Arg[1,one,two,three]}
- "one"
- ${Arg[2,${MyVariable}]}
- The second comma-separated value in MyVariable
[edit]
