-- your code goes here local mystring='' local x, y = string.find(mystring,'', 0, true) local w, z = string.find(mystring,'', x, true) local author print(x,y,w,z) if y==nil or w==nil then print(author) else author = string.sub(mystring, y+1, w-1) print(author) end