Lua - get indexOf string
问题 I am stuck with a problem in Lua to check whether the string value is not presented in another string. That's how I likely will do it in Javascript: 'my string'.indexOf('no-cache') === -1 // true but in Lua I'm trying to use string module which gives me unexpected response: string.find('my string', 'no-cache') -- nil, that's fine but.. string.find('no-cache', 'no-cache') -- nil.. that's weird string.find('no-cache', 'no') -- 1, 2 here it's right.. strange.. 回答1: As has already been mentioned,