Jun 14, 2002 #1 ahhchu Programmer Sep 19, 2001 38 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 Sep 19, 2001 38 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 May 7, 2002 30 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