Concatenate string

How can i combine two or more variables into one, is it possible to plus variables with type number?
Example: I want create emails with the name is current date and host of email is “@automaill.io

Please help me. Thanks !!!

2 Likes

Hello @namtuoc

akaAT Studio support concatenate string by syntax `$.this.A + $.this.B`

  • if either is string → string concatenation
  • if both are numbers → add numbers (only applies to integers)
  • if you want to add space character or any character between 2 variables
    `$.this.A` `$.this.B`
    With your example, you can resolve by this way

2 Likes