Concatenate string and integer

0
I want to concatenation the string and integer. How can I concatenation those in microflow?
asked
1 answers
1

Do you want the result to also be a string? If so, use the “toString” function on the integer. For example if you want the new string to be a new variable, put this in the Create Variable action...
 

$vString + toString($vInteger)


https://docs.mendix.com/refguide/to-string

answered