Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!tut.cis.ohio-state.edu!bloom-beacon!gatech!hubcap!ncrcae!ncrlnk!uunet!portal!cup.portal.com!Mannie From: Mannie@cup.portal.com (William Allison Guynes) Newsgroups: comp.lang.pascal Subject: Re: Converting Strings to Char Message-ID: <14756@cup.portal.com> Date: 18 Feb 89 01:17:49 GMT References: <459@loligo.cc.fsu.edu> <950017@hpcllmr.HP.COM> <1701@westfort.UUCP> Distribution: usa Organization: The Portal System (TM) Lines: 16 Change this: for x:=1 to length(s) do begin sd:=copy(s,x,1); send(sd); end To this: for x:= 1 to length(s) do send(s[x]); This should work. This just yanks out the character from location X. You can do completely away with the "sd" variable. Mannie