cancel
Showing results for 
Search instead for 
Did you mean: 

how to specify ASCII code in the delimeter of concat function

Former Member
0 Kudos

Hi, all.

In a graphical mapping in XI, how do we specify ASCII code

(hexadecimal) in the delimiter of concat standard function?

i'd like to use spaces with ASCII code(0x20) as a delimiter

because if we just enter spaces it would be very difficult

to identify what and how many delimiters are.

Thanks.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

>> if we just enter spaces it would be very difficult

>>to identify what and how many delimiters are.

why dont you write a small userdefined function where you add number of spaces based on a loop.

int totalspaces = 10;

for(int i = 0; i<totalspaces;i++)

a += "";

return a;

cheers,

naveen