LoginSignup
8
10

More than 5 years have passed since last update.

Lua で実行中のファイル名称と行番号を取得する

Posted at

ファイル名称を取得する

local debugInfo = debug.getinfo(1)
local fileName = debugInfo.source:match("[^/]*$")

現在行を取得する

local debugInfo = debug.getinfo(1)
local currentLine = debugInfo.currentline
8
10
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
10