Skip to main content
Version: Next

Format String 2

Format String 2

Description

Returns a string with two variables

Example:

  • template = Hello $1, your email is $2 !
  • $1 = toto
  • $2 = toto@tata.io

Output: Hello toto, your email is toto@tata.io !

Inputs

  • template (String): The template to follow should respect the variable syntax $1, $2
  • $1 (String): The variable to replace
  • $2 (String): The variable to replace

Outputs

  • result (String): The resulting template with the variables