I wanted to make something as simple as a string subtraction.
I made a new variable with populate variable that is supposed to be initialized to the difference between two strings.
Let's assume that
String 1 = abc
String 2 = ab
what I'd like is: String3 = c
Code: Select all
"%s_string1%-%s_string2%"
abc-ab
Code: Select all
%s_string1%-%s_string2%
abc-ab
what I thought was going to do was to output "c" instead.