jw_cad 外部変形 - (1299) luaで文字種を取得する(cn) -

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

 

luaで文字種を取得する(cn)

:luaで文字種を取得する(cn)
@echo off
for /f "delims=:" %%n in ('findstr /n "^#!" %0') do (
  copy jwc_temp.txt myfiles > nul
  more +%%n %0 | lua - myfiles > jwc_temp.txt
)
goto:eof

REM #jww
REM #e

#!この次の行からプログラムを書いてください
for line in io.lines(arg[1]) do
  if line:match("^cn[0-9]") then cn = line:sub(3) end
end
if 2 < #cn then
  print( ("h#cn%s"):format(cn))
else
  print( ("h#cn=%s"):format(cn))
end