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,FREEMAIL_FROM, INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,1f2aaebe31a3cb6d,start X-Google-Attributes: gid103376,public From: dhbemis@aol.com (DHBemis) Subject: Help me parse a long character Date: 1997/10/25 Message-ID: <19971025194701.PAA21145@ladder01.news.aol.com>#1/1 X-Deja-AN: 285553681 X-Admin: news@aol.com Organization: AOL http://www.aol.com Newsgroups: comp.lang.ada Date: 1997-10-25T00:00:00+00:00 List-Id: This is an easy one I'm sure. I'm in my first semester of programming.... I'm trying to parse a 40-character long string. They are formatted in the following way: LASTNAME^^^^^^^^^^^^^^^^^FIRSTNAME^^^^^^ <--- the variable Full_Name I'm not sure how to parse it into to two separate variables, first_name and Last_name. I used the get_line procedure to get the string, so I have the last_character position. How do I ignore the spaces in between? Thanks ! Help