Jun 14, 2002 #1 ahhchu Programmer Joined Sep 19, 2001 Messages 38 Location US Is there a simple way ot convert a string to a array of char? var a: string; b: array [0..24] of char; is there a way to get the equivalent: b:= a; // ?? Thanks
Is there a simple way ot convert a string to a array of char? var a: string; b: array [0..24] of char; is there a way to get the equivalent: b:= a; // ?? Thanks
Jun 14, 2002 Thread starter #2 ahhchu Programmer Joined Sep 19, 2001 Messages 38 Location US think I solved my own prob Move (a[1],b[0],length(a)); think this does it.... thanks to anyone that looked... Upvote 0 Downvote
think I solved my own prob Move (a[1],b[0],length(a)); think this does it.... thanks to anyone that looked...
Jun 14, 2002 #3 fll Programmer Joined May 7, 2002 Messages 30 Location BE try var a:string; b:array [1..24] of char; i:word; ... for i:=1 to 24 do b:=a Laurent. ;-) Upvote 0 Downvote