D
dragoon1974
Unregistered / Unconfirmed
GUEST, unregistred user!
一个字数组:strBuf : array[0..49] of char;<br>值从其他函数获得,为:<br>('q', 'K', 'c', 'e', 'D', 's', 'S', 'k', #192, '3', '.', '1', '.', '0', 's', 'o', 'f', 't', 'w', 'a', 'r', 'e', 'A', 'Y', 'n', '0', '2', 'P', 'S', 'o', #15, '0', '6', '0', '8', #0, #0, #0, #0, #0, #0, #0, #0, #0, #0, #0, #0, #0, #0, #0)<br><br>转化为字符串:<br> for i:=0 to 49 do<br> edit3.Text := edit3.Text + CapibilityBuf;<br><br>edit3.text 为 qKceDsSk3.1.0softwareAYn02PSo 0608<br><br><br>但是通过:<br>str := strBuf;<br>或者<br>str := StrPas(strBuf);<br><br>str 为 qKceDsSk?.1.0softwareAYn02PSo 0608<br><br>如何使 str 的值和使用 edit3.text 的效果一样