2007 Jul 11 10:21 AM
2007 Jul 11 10:22 AM
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