Files
resty_functions/test/test_re.lua
T

11 lines
241 B
Lua
Raw Normal View History

--local str = "form-data; name=\"files[]\"; filename=\"Song-of-joy.png\""
--local ext = ngx.re.match(str, [[filename=".*\.(\w+)"]], "jo")
--print(ext)
local str = [[image\/png]]
local ext = ngx.re.match(str, [[image\/(\w+)]])
print(ext)