1//String concatenation in table
2
3//Case Scenario - Address line 1 and 2 are different strings
4
5//Desired Output - One single Address
6
7//Solution:-
8
9 {merchant.merchant.companyAddress1 +
10 ', ' +
11 merchant.merchant.companyAddress2 +
12 ', ' +
13 merchant.merchant.companyAddress3 +
14 ', ' +
15 merchant.merchant.companyCity +
16 ', ' +
17 merchant.merchant.companyState +
18 ', ' +
19 merchant.merchant.companyCountry +
20 ' ' +
21 '-' +
22 ' ' +
23 merchant.merchant.companyPincode}