明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1570|回复: 3

[函数] 求助:如何将字符串变成变量?

[复制链接]
发表于 2011-1-11 09:19:27 | 显示全部楼层 |阅读模式
如何将字符串变成变量?
例如,文本文件中kg,200.255
从文件中读出"KG" 和200.255后,既令kg=200.255
发表于 2011-1-11 09:50:19 | 显示全部楼层
(setq Str "Kg,200.255")

Command: (set (read (substr str 1 2)) (read (substr str 4)))
200.255

Command: !kg
200.255
发表于 2011-1-11 09:54:51 | 显示全部楼层
本帖最后由 highflybir 于 2011-1-11 10:04 编辑

  1.   (setq f (open "c:/test.txt" "R"))
  2.   (setq l nil)
  3.   (while (setq s (read-line f))
  4.     (setq s (strcat "(" (VL-STRING-SUBST " " "," s) ")"))
  5.     (setq s (read s))
  6.     (apply 'set s)
  7.     (setq l (cons s l))
  8.   )
  9.   (close f)
  10.   (reverse l)


譬如test.txt如下的文字
kg,200.255
km,10000
kl,123214
dg,123551
ek,12
返回:
((KG 200.255) (KM 10000) (KL 123214) (DG 123551) (EK 12))

每个变量都赋值了

发表于 2011-1-13 11:49:12 | 显示全部楼层
如果txt中每行的格式是 :  xyz,123.456
你 read-line 后先替换一下 逗号 为 空格 ,再 read 就可以便为 LIST 了

如 xyz, 123.456
  1. (setq sText (read-line f)
  2.         sText (function-replace "," " " sText)
  3.         return-list (read (strcat "(" sText ")")
  4. )
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-20 05:05 , Processed in 0.163000 second(s), 26 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表