local dataPassport = {} local regexPassport = { title = '^(Паспорт %S+ %- %d+)$', name = '^Имя:%s+(%S+)$', year = '^Проживание в стране %(лет%):%s+(%d+)$', gender = '^Пол:%s+(%S+)$', family = '^Семейное положение:%s+(.*)$', home = '^Проживание:%s+(.*)$', work = '^Работа:%s+(.*)$', org = '^Организация:%s+(.*)$', dep = '^Подразделение:%s+(.*)$', phone = '^Телефон:%s+(.*)$', suspect = '^Уровень розыска:%s+(%d+)$', respect = '^Законопослушность:%s+(-?%d+)$', } local dialogId = 487 local style = 0 local title = 'Паспорт Arseniy_Samsonov - 487' local text = [[Имя: Arseniy_Samsonov Проживание в стране (лет): 47 Пол: Мужской Семейное положение: Женат на Maria_Samsonova Проживание: Средний класс (№331) Работа: Старший агент Организация: Министерство внутренних дел Подразделение: Федеральное бюро расследований Телефон: 166 Уровень розыска: 0 Законопослушность: 100]] local b1 = 'Закрыть' local b2 = '' -- onShowDialog -- title = title:gsub('{%x%x%x%x%x%x}', '') b1 = b1:gsub('{%x%x%x%x%x%x}', '') b2 = b2:gsub('{%x%x%x%x%x%x}', '') text = text:gsub('{%x%x%x%x%x%x}', '') if style == 0 and title:find(regexPassport.title) then for line in text:gmatch('[^\n]+') do for typ, regex in pairs(regexPassport) do if line:find(regex) then dataPassport[typ] = line:match(regex) break end end end end for typ, value in pairs(dataPassport) do print(typ, value) end
Write, Run & Share Lua code online using OneCompiler's Lua online compiler for free. It's one of the robust, feature-rich online compilers for Lua language, running the latest Lua version 5.4. Getting started with the OneCompiler's Lua editor is easy and fast. The editor shows sample boilerplate code when you choose language as Lua and start coding.
OneCompiler's Lua online editor supports stdin and users can give inputs to programs using the STDIN textbox under the I/O tab. Following is a sample Lua program which takes name as input and prints hello message with your name.
name = io.read("*a")
print ("Hello ", name)
Lua is a light weight embeddable scripting language which is built on top of C. It is used in almost all kind of applications like games, web applications, mobile applications, image processing etc. It's a very powerful, fast, easy to learn, open-source scripting language.
-- global variables
a = 10
-- local variables
local x = 30
Value Type | Description |
---|---|
number | Represents numbers |
string | Represents text |
nil | Differentiates values whether it has data or not |
boolean | Value can be either true or false |
function | Represents a sub-routine |
userdata | Represents arbitary C data |
thread | Represents independent threads of execution. |
table | Can hold any value except nil |
While is also used to iterate a set of statements based on a condition. Usually while is preferred when number of iterations are not known in advance.
while(condition)
do
--code
end
Repeat-Until is also used to iterate a set of statements based on a condition. It is very similar to Do-While, it is mostly used when you need to execute the statements atleast once.
repeat
--code
until( condition )
For loop is used to iterate a set of statements based on a condition.
for init,max/min value, increment
do
--code
end
Function is a sub-routine which contains set of statements. Usually functions are written when multiple calls are required to same set of statements which increase re-usuability and modularity.
optional_function_scope function function_name( argument1, argument2, argument3........, argumentn)
--code
return params with comma seperated
end