mirror of
https://github.com/FourierTransformer/ftcsv.git
synced 2024-11-19 19:54:23 +00:00
Merge pull request #1 from srdgame/patch-1
Convert value to string before escape it
This commit is contained in:
commit
47ed4dabf9
@ -323,6 +323,7 @@ end
|
|||||||
|
|
||||||
-- a function that delimits " to "", used by the writer
|
-- a function that delimits " to "", used by the writer
|
||||||
local function delimitField(field)
|
local function delimitField(field)
|
||||||
|
local field = tostring(field)
|
||||||
if field:find('"') then
|
if field:find('"') then
|
||||||
return field:gsub('"', '""')
|
return field:gsub('"', '""')
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user