Language Reference |
ROWCATC Function |
The ROWCATC function concatenates rows of a character matrix by using blank compression.
The arguments the ROWCATC function are as follows:
is a character matrix or quoted literal.
select the rows of matrix.
select the columns of matrix.
The ROWCATC function works the same way as the ROWCAT function except that blanks in element strings are moved to the end of the concatenation. For example, the following statements produce the matrix as shown:
b={"ABC" "D " "EF ", " GH" " I " " JK"}; a=rowcatc(b);
A 2 rows 1 col (character, size 9) ABCDEF GHIJK
Quotes (") are needed only if you want to embed blanks or special characters or to maintain uppercase and lowercase distinctions.
Copyright © SAS Institute, Inc. All Rights Reserved.