| |||||||||||
| |||||||||||
Tcl - lappend v concat
In Tcl, you can use the lappend command to add items on to a list, but it doesn't always do exactly what you wish it to. Let's say that I've got two lists - the first containing the early courses of a meal, and the second containing the latter courses. If I append the second list to the first, the second list gets added AS A SINGLE LIST ITEM to the first list ... in the following example, adding the list "also" with two items in it (Fruit and Coffee") to the list "lunch" with two items (Soup and Salad) results in a list of just three items - Soup, Salad and {Fruit Coffee} rather than the four I would have hoped for.
If you want to add each item in the second list on to the end of the first list, you can use the concat command instead of the lappend command. In the following example, concat produces a 4 item list - Soup, Salad, Fruit and Coffee. set lunch "Soup Salad"When I runs that ... what do I get? earth-wind-and-fire:~/jun06 grahamellis$ tclsh ccat(written 2006-06-27 18:34:34) Associated topics are indexed under T206 - Tcl/Tk - Lists
Some other Articles
Running external processes in Tcl and Tcl/TkWhich way to turn? Good follow up ... my thanks Converting between Hex and Decimal in Tcl Tcl - lappend v concat Separation and Integration The fragility of pancakes - and better structures Weekend in Ireland On Crosby sands Naming Rooms 1637 posts, page by page
Link to page ... 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33 at 50 posts per pageThis is a page archived from The Horse's Mouth at http://www.wellho.net/horse/ - the diary and writings of Graham Ellis. Every attempt was made to provide current information at the time the page was written, but things do move forward in our business - new software releases, price changes, new techniques. Please check back via our main site for current courses, prices, versions, etc - any mention of a price in "The Horse's Mouth" cannot be taken as an offer to supply at that price. Link to Ezine home page (for reading). Link to Blogging home page (to add comments). |
| ||||||||||
PH: 01144 1225 708225 • FAX: 01144 1225 707126 • EMAIL: info@wellho.net • WEB: http://www.wellho.net • SKYPE: wellho | |||||||||||