From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,60c38d91ea5aab36,start X-Google-Attributes: gid103376,public From: Hung Huynh Subject: Manipulating strings Date: 1996/03/31 Message-ID: #1/1 X-Deja-AN: 145129708 organization: Chalmers University of Technology content-type: TEXT/PLAIN; charset=US-ASCII mime-version: 1.0 newsgroups: comp.lang.ada Date: 1996-03-31T00:00:00+00:00 List-Id: Hi! Let's say I've got this string: "this is my string " As you can see there's uneccessary spaces at the end of the string. I want to send just the string without the spaces into a procedure. How do I do this? My string is output from another procedure. I don't want to do it with the help of a function that is recursivly defined, neither should it be with any kind of loop. Thanks! /Hung