string s
s=Space$(120)
mid(s,10)="Hello" '我让s生成120个空格,我在第10位插入hello而delphi的copy不支持左赋值
var
 s :PChar; s:=StrAlloc(120); 我如何把Hello插入第10位呢? 其他位还是保留空格