Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在excel表中有两列。第一列描述了值,而第二列由不同类型(int、float hex、string)的对应值组成。我想将第二列读入预定义变量并将其转换为字节。例如
第一栏 第二栏 车号 234566(整数) 姓名亚历克斯(字符串) 验证 0x34239032(十六进制)
第一栏 第二栏
车号 234566(整数)
姓名亚历克斯(字符串)
验证 0x34239032(十六进制)
因此我想阅读
int veh_no。= 234566 字符串名称 = 亚历克斯 字符串有效 = 34239032
int veh_no。= 234566
字符串名称 = 亚历克斯
字符串有效 = 34239032
从excel表中读取它的最有效方法是什么?