Content deleted Content added
No edit summary |
No edit summary |
||
Line 81:
-- Step 3: parse comma-delimited words
hitCount = 0
sWordlist = tArgs.
local eSep
eSep = escape_word(tArgs.
table.insert(wordTable, eSep) -- dev
local patstring = '%f[^' .. eSep .. '][^' .. eSep .. ']+%f[' .. eSep .. ']'
Line 288:
-- concat the sYeslist (= all hit words; from 2 tables)
if bANDresult then
sYeslist = sYeslist .. table.concat(tANDhits, tArgs.
end
if #tORhits > 0 then
if #tANDhits > 0 then
sYeslist = sYeslist .. tArgs.
end
sYeslist = sYeslist .. table.concat(tORhits, tArgs.
end
end
|