jw_cad 外部変形 - (1113) clispでレイヤグループを取得する(lg) -

外部変形は データのやり取りをテキストファイルで行うので プログラム言語は 自由に選ぶことができます。図形は機能的かつシンプルなため、数多くのユーザーに受け入れられています。

 

clispでレイヤグループを取得する(lg)

:clispでレイヤグループを取得する(lg)
@echo off
for /f "delims=:" %%n in ('findstr /n "^#!" %0') do (
  more +%%n %0 | clisp -q > nul
)
goto:eof

REM #jww
REM #e

#!この次の行からプログラムを書いてください
( ;jwc_temp.txt から 入力
  with-open-file (f "jwc_temp.txt" :direction :input)
  (loop for line = (read-line f nil) while line do
    (setq a (regexp:regexp-split "\\s\\+" line))
    (if (regexp:match "^lg[0-9a-f]" line) (setq lg (subseq (car a) 2 3)))
  )
)
( ;jwc_temp.txt へ 出力
  with-open-file (f "jwc_temp.txt" :direction :output)
    (format f "h#lg=~a~%" lg)
)