明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1806|回复: 3

查表函数

[复制链接]
发表于 2013-6-11 07:48:20 | 显示全部楼层 |阅读模式
(defun cb (f u v / l i) ; 查表
;       F---表格文件名
;       U---行参数
;       V---列参数
        (setq   f (open (findfile (if f (strcat f ".DAT") name)) "r")
                i (s-column v (readl f) 1)
                l (s-line u (readl f) 0)
        )
        (close f)
        (nth i l)
)

(defun s-column (v l i / c) ; 查列, 从表L第I个元素查找V符合条件的位置
        (setq c (nth i l))
        (while (if (eq (type v) 'str) (/= v c) (> v c))
                (setq c (nth (setq i (1+ i)) l))
                (if (> i 200) (*error* "N"))
        )
        i
)

(defun s-line (v b j / l) ; 查行, 从当前行B的第J列位置查找符合条件的行
        (setq l (nth j b))
        (while (if (eq (type v) 'str) (/= v l) (> v l))
                (setq l (nth j (setq b (readl f))))
        )
        b
)

(defun readl (f) ; 读行
        (read (strcat "(" (read-line f) ")"))
)

;----------------------------------------------
例:
(cb "b2-40.txt" 2 180)
返回(46  32)









本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?注册

x
 楼主| 发表于 2013-6-11 08:04:33 | 显示全部楼层
标题应该是“查询表格的函数”
 楼主| 发表于 2013-6-11 08:05:14 | 显示全部楼层
不好意思,前面搞错了。
发表于 2019-7-18 23:38:57 | 显示全部楼层
谢谢! greatlmy  分享程序!!!!!!!
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-25 09:25 , Processed in 0.139077 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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