Unix and Linux Discussions Tagged with spaces |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
2,541 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
15,401 |
Shell Programming and Scripting |
|
|
|
3 |
7,326 |
Shell Programming and Scripting |
|
|
|
3 |
2,369 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
2,564 |
UNIX for Beginners Questions & Answers |
|
|
|
15 |
11,127 |
Shell Programming and Scripting |
|
|
|
1 |
3,831 |
Shell Programming and Scripting |
|
|
|
10 |
6,890 |
Shell Programming and Scripting |
|
|
|
9 |
3,742 |
Shell Programming and Scripting |
|
|
|
11 |
2,802 |
Shell Programming and Scripting |
|
|
|
4 |
2,407 |
Shell Programming and Scripting |
|
|
|
15 |
9,869 |
AIX |
|
|
|
4 |
2,047 |
Shell Programming and Scripting |
|
|
|
2 |
7,649 |
Shell Programming and Scripting |
|
|
|
8 |
12,202 |
Shell Programming and Scripting |
|
|
|
5 |
2,056 |
Shell Programming and Scripting |
|
|
|
6 |
3,385 |
Shell Programming and Scripting |
|
|
|
6 |
3,570 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
11,683 |
Shell Programming and Scripting |
|
|
|
2 |
2,414 |
Shell Programming and Scripting |
|
|
|
2 |
2,581 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
3,153 |
Shell Programming and Scripting |
|
|
|
3 |
4,592 |
Shell Programming and Scripting |
|
|
|
3 |
5,556 |
Shell Programming and Scripting |
|
|
|
4 |
16,544 |
Shell Programming and Scripting |
|
|
|
17 |
33,116 |
UNIX for Dummies Questions & Answers |
|
|
|
5 |
5,873 |
Shell Programming and Scripting |
|
|
|
1 |
24,563 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
5,940 |
Shell Programming and Scripting |
|
|
|
1 |
3,949 |
Shell Programming and Scripting |
|
|
|
12 |
11,189 |
Programming |
|
|
|
6 |
7,134 |
Shell Programming and Scripting |
|
|
|
7 |
10,436 |
Shell Programming and Scripting |
|
|
|
4 |
3,224 |
Shell Programming and Scripting |
|
|
|
5 |
5,780 |
Shell Programming and Scripting |
|
|
|
6 |
9,009 |
Shell Programming and Scripting |
|
|
|
2 |
23,886 |
Shell Programming and Scripting |
|
|
|
3 |
8,896 |
Shell Programming and Scripting |
|
|
|
5 |
16,641 |
Shell Programming and Scripting |
|
|
|
3 |
2,453 |
UNIX for Dummies Questions & Answers |
concat(3tcl) Tcl Built-In Commands concat(3tcl)
__________________________________________________________________________________________________________________________________________________
NAME
concat - Join lists together
SYNOPSIS
concat ?arg arg ...?
_________________________________________________________________
DESCRIPTION
This command joins each of its arguments together with spaces after trimming leading and trailing white-space from each of them. If all
the arguments are lists, this has the same effect as concatenating them into a single list. It permits any number of arguments; if no args
are supplied, the result is an empty string.
EXAMPLES
Although concat will concatenate lists, flattening them in the process (so giving the following interactive session):
% concat a b {c d e} {f {g h}}
a b c d e f {g h}
it will also concatenate things that are not lists, as can be seen from this session:
% concat " a b {c " d " e} f"
a b {c d e} f
Note also that the concatenation does not remove spaces from the middle of values, as can be seen here:
% concat "a b c" { d e f }
a b c d e f
(i.e., there are three spaces between each of the a, the b and the c).
SEE ALSO
append(3tcl), eval(3tcl), join(3tcl)
KEYWORDS
concatenate, join, lists
Tcl 8.3 concat(3tcl)