Format String 3
Format String 3
Description
Returns a string with insertion of three variables
Example:
- template = Hello $1, your email is $2 and phone number is $3!
- $1 = toto
- $2 = toto@tata.io
- $3 = 555.3434.8990
Output: Hello toto, your email is toto@tata.io and phone number is 555.3434.8990 !
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
- $3 (String): The variable to replace
Outputs
- result (String): The result of the template with the variables