This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
en:stringoperators [2020/02/28 10:46] 127.0.0.1 external edit |
en:stringoperators [2020/04/21 21:16] (current) admin |
||
---|---|---|---|
Line 8: | Line 8: | ||
|+|Concatenation|a + b|Appends b to the end of a (If either (or both) a and b are not numbers, see [[IsNumeric|IsNumeric]]). < | |+|Concatenation|a + b|Appends b to the end of a (If either (or both) a and b are not numbers, see [[IsNumeric|IsNumeric]]). < | ||
|& | |& | ||
+ | |*|Repeat|a * i|Repeats string a, integer i times. | ||
+ | |||
+ | ==== History ==== | ||
+ | |2.0.0.0|Added string repeat using the ' |