gpt4 book ai didi

delphi - delphi中将字符串字符转换为ascii

转载 作者:行者123 更新时间:2023-12-02 08:15:09 26 4
gpt4 key购买 nike

如何在 Delphi7 中将字符串字符 (123-jhk25) 转换为 ASCII

最佳答案

如果您指的是字符的 ASCII 代码,则需要使用 Ord() 函数,该函数返回任何“可枚举”类型的序数值

在这种情况下,它适用于字符值,返回一个字节:

var
Asc : Byte;
i : Integer;
begin
for i := 1 to Length(s) do
begin
Asc := Ord(s[i]);
// do something with Asc
end;
end;

关于delphi - delphi中将字符串字符转换为ascii,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2305923/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com