Icon is a programming language with a long and rich history, and novel features for string scanning and goal-directed evaluation.
escargo 2002-10-28:
There are several points of similarity between Tcl and Icon, along with many more differences.
The data structures are implemented in a way that allows a substantial amount of polymophism. The syntax for iterating through all the values in a set, or all the elements in a list, or even all the characters in a string is pretty much the same.
Some of the differences are equally significant.
WJP: Furthermore, Icon has a regular expression package, so you can use both Icon string scanning and regular expressions as you find convenient.
ulis, 2005-04-22. (following text comprise excerpts from [L1 ])
Icon has notions of success and failure that added to the notion of generator permits thing such:
sentence := "Store it in the neighboring harbor" every i := find("or", sentence) do write(i)
which writes all the positions at which "or" occurs in sentence. For the example above, these are 3, 23, and 33.
Compare Tcl's
% regexp -all -indices -inline or "Store it in the neighboring harbor" {2 3} {22 23} {32 33}
Other interesting notion is suspension:
procedure findodd(s1, s2) every i := find(s1, s2) do if i % 2 = 1 then suspend i end
is a procedure that generates the odd-valued positions at which s1 occurs in s2. The suspend control structure returns a value from the procedure, but leaves it in suspension so that it can be resumed for another value. When the loop terminates, control flows off the end of the procedure without producing another value.
See continuation or coroutine.