7
我在Lua中遇到了一個問題,以檢查字符串值是否在另一個字符串中不存在。Lua - 獲取indexOf字符串
這就是我如何可能會做它在Javascript:
'my string'.indexOf('no-cache') === -1 // true
,但在Lua我試圖使用string
模塊,它給了我意外的響應:
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..