"Ricardo Palomares Mart�nez" writes: > My problem is simple: I need to get the string expression of integer > and real numbers (the usual Str(number) of other languages), but I'm > unable (that wouldn't be surprising if you did know me :-) ) to get the > equivalent function looking around the Ada reference (the HTML files > which came with GNAT 3.07 for MS-DOS). The attribute T'Image returns the string form of a number, ie S : String := Integer'Image (42); You can go the other way, and get the value that corresponds to a string: I : Integer := Integer'Value ("42");