Lua
文章平均质量分 63
龙少_java
这个作者很懒,什么都没留下…
展开
-
Lua编写工具 ZeroBraneStudio 背景风格设置
--[[-- Use this file to specify User preferences. Review [examples](+E:\ZeroBraneStudioEduPack-0.70-win32\cfg\user-sample.lua) or check [online documentation](http://studio.zerobrane.com/documentat...原创 2015-07-06 10:41:56 · 1092 阅读 · 0 评论 -
lua中ipairs和pairs的区别
ipairs (t) Returns three values: an iterator function, the table t, and 0, so that the construction for i,v in ipairs(t) do body end will iterate over the pairs (1,t[1]), (2,t[2]), ···, up to the...原创 2014-12-03 18:30:11 · 258 阅读 · 0 评论 -
Lua 语言的模式匹配--正则表达式
Lua 的模式匹配不使用Posix规范的正则表达式(也写做regexp)来进行模式匹配。主要的原因出于程序大小方面的考虑:实现一个典型的符合POSIX标准的regexp大概需要4000行代码,这比整个Lua标准库加在一起都大。权衡之下,Lua中的模式匹配的实现只用了500行代码,当然这意味着不可能实现POSIX所规范的所有更能。然而,Lua中的模式匹配功能是很强大的,并且包含了一些使用标准P...原创 2014-12-03 19:02:04 · 217 阅读 · 0 评论