Skip to content

2.0 [260720b]

Choose a tag to compare

@ejetaxeblevich ejetaxeblevich released this 19 Jul 21:21
  • Добавлены новые методы и функции:
[F] tuple string.match( string, string pattern, int position )  /* Ищет вхождение шаблона в строку, возвращает захваченные значения. Поддерживает регулярные выражения */
  • Изменены Lua-функции. Глобальные методы string и table перемещены из LuaE в глобальные string. и table. Lua игры. Использование:
--Было
local str = LuaE:string_strip("  lg")

--Стало
local str = string.strip("  lg")
  • Переименованы функции string и table - "_" заменены на "";
  • Изменен ReadMe

  • Added new methods and functions:
[F] tuple string.match( string, string pattern, int position )  /* Searches for the occurrence of a pattern in a string, returns the captured values. Supports regular expressions */
  • Changed Lua-functions. Global methods string and table have been moved from LuaE to global string. and table. game Lua. Usage:
--It was
local str = LuaE:string_strip("  lg")

--Become
local str = string.strip("  lg")
  • Renamed the functions string and table - "_" replaced by "";
  • Edit ReadMe