Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

WHAT IS THE DIFF B/N SPLIT AND CONCATENATE

Former Member
0 Kudos

HI

EXPERTS

CAN U HELP ME PZZZZZZZZZZZZZZ

1 REPLY 1

0 Kudos

Hi,

SPLIT command is used to split a string into small peices at a delimiter.

For example:

Suppose I have "abc,def,ijh".

Now if i SPLIT this string at ',' I will get three small strings "abc" "def" "ijh".

CONCATENATE Is to club small substrings into a big string.

Now

DATA: str type string.

CONCATENATE 'ABC' 'DEF' INTO str.

write: str.

Regards,

Sesh