Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Concatenating variables

How would I go about concatenating fields?

let a='a';

let b='b';

let c='c';

What's the equivalent for this?

let d=$(a)+$(b)+$(c); --??

let d=$(a)&$(b)&$(c); --??

Expected value for "d":

abc


Thanks!

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Hi,

I think you want to use:

let d=$(a)&$(b)&$(c);

if I understood your question correctly..

Have fun,

Stefan

View solution in original post

2 Replies
swuehl
MVP
MVP

Hi,

I think you want to use:

let d=$(a)&$(b)&$(c);

if I understood your question correctly..

Have fun,

Stefan

Not applicable
Author

Works likes charm! Thanks, Stefan!