Finding the size of an Icon string |
|
The unary ``*'' operator, applied to a string, returns
the number of characters in the string. For example, the expression
* "foo"
yields the integer 3, the number of characters in the string "foo".
Here's another example. This program prints the length of every line of its input:
procedure main()
while line := read ( ) do
write ( * line );
end
|
John Shipman, john@nmt.edu
Last updated: 1996/01/06 21:12:57 UT URL: http://www.nmt.edu/tcc/help/lang/icon/stringsize.html |
|