jw_cad 外部変形 - (1120) clispで文字フォントを取得する(cn"$<~>) -

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

 

clispで文字フォントを取得する(cn"$<~>)

:clispで文字フォントを取得する(cn"$<~>)
@echo off
for /f "delims=:" %%n in ('findstr /n "^#!" %0') do (
  more +%%n %0 | clisp -q > nul
)
goto:eof

REM #jww
REM #e

#!この次の行からプログラムを書いてください
(setq font nil)
( ;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 "^cn\"\\$" line)
        (progn
          (setq pfont (subseq line (+ (search "<" line) 1) (search ">" line)))
          (if (equal font nil) (setq font pfont))
        )
    )
  )
)
( ;jwc_temp.txt へ 出力
  with-open-file (f "jwc_temp.txt" :direction :output)
    (format f "h#font=~a~%" font)
)