Does anybody know a way to do this:
but without a type conversion?
a utility plugin offers a format string:
I guess its not a big deal - just curious though
Does anybody know a way to do this:
but without a type conversion?
a utility plugin offers a format string:
I guess its not a big deal - just curious though
Using the String Append can do similar like your second example from that utility plugin. But, it is a simple append, so no format. But in your examples, you did use the format also to make a simple append, so here we go.
You also can add more pins to the append, so some format can be done as well.
Herb64 is correct, Append worked perfect for my problem concerning combining 2 names together. thank you.