Construct 3 r385

You're viewing a single comment in a conversation. View all the comments
  • 2 Comments

  • Order by
  • lots of surprises! Great update!

    StringSub is an absolute game-changing update! No more using & to concatenate strings!

    Before:

    "Bye string" & var1 & "string" & var2 & "something" & var3 & "string"

    After:

    StringSub("string {0} and {1} and {2} string", var1, var2, var3)

    :

    StringSub("Hello, {0}! Welcome to {1}", Variable1, Variable2)