Delphi中String与PAnsiChar转换

所有的原生字符串类型String转PAnsiChar都需要经过AnsiString过渡

strAnsi:= PAnsiChar(AnsiString(str));

你可能感兴趣的:(Delphi中String与PAnsiChar转换)