सांत्वना देने के लिए मेज कैसे डंप करें?


109

मुझे एक तालिका की सामग्री को प्रदर्शित करने में समस्या हो रही है जिसमें नेस्टेड टेबल (एन-डीप) है। मैं इसे केवल एक printस्टेटमेंट या कुछ त्वरित और गंदे के माध्यम से बाहर या कंसोल पर डंप करना चाहूंगा, लेकिन मैं यह पता नहीं लगा सकता कि कैसे। मैं किसी न किसी समकक्ष के लिए देख रहा हूं जो मुझे एक NSDictionarygdb का उपयोग करते समय मिलेगा ।

जवाबों:


56

टेबल क्रमांकन पर लुका विकी ब्राउज़ करने के लिए स्वतंत्र महसूस करें । यह कंसोल पर तालिका को डंप करने के तरीके पर कई तरीके सूचीबद्ध करता है।

आपको बस यह चुनना है कि कौन सा सूट आपको सबसे अच्छा लगता है। इसे करने के कई तरीके हैं, लेकिन मैं आमतौर पर पेनल्टी से एक का उपयोग करके समाप्त करता हूं :

> t = { a = { b = { c = "Hello world!", 1 }, 2, d = { 3 } } }
> require 'pl.pretty'.dump(t)
{
  a = {
    d = {
      3
    },
    b = {
      c = "Hello world!",
      1
    },
    2
  }
}

6
गूंगा और भी अधिक नौसिखिया सवाल: मैं pl.pretty जैसे विस्तार को कैसे स्थापित कर सकता हूं? यह अच्छा है अगर मैं सिर्फ एक रत्न स्थापित कर सकता हूं जैसे टार बॉल्स को अनचाहे बिना मणि स्थापित करना और चीजों को अलग करने के लिए मेरे एचडी पर आदर्श स्थान ढूंढना। क्या कोई त्वरित / दर्द रहित "डू-इट-इट-वे" है?
22

1
दाह, मुझे उस अंतिम टिप्पणी को पोस्ट करने से पहले होम पेज पर देखना चाहिए था! इंस्टालेशन उतनी जल्दी / दर्द रहित नहीं है जितना मैंने उम्मीद की थी लेकिन बहुत बुरा नहीं था।
क्लिफ

मैं क्या देख रहा था पर प्रकाश चमकता है!
क्लिफ

7
@ क्लिफ पेनड्राइव स्थापित करने के लिए luarocks
vagabond

101

मुझे पता है कि यह प्रश्न पहले ही उत्तर के रूप में चिह्नित किया जा चुका है, लेकिन मुझे यहां अपनी लाइब्रेरी प्लग करने की अनुमति है। इसे इंस्पेक्ट.लुआ कहा जाता है, और आप इसे यहां पा सकते हैं:

https://github.com/kikito/inspect.lua

यह केवल एक एकल फ़ाइल है जिसे आपको किसी अन्य फ़ाइल से आवश्यकता हो सकती है। यह एक फ़ंक्शन देता है जो किसी भी Lua मान को मानव-पठनीय स्ट्रिंग में बदल देता है:

local inspect = require('inspect')

print(inspect({1,2,3})) -- {1, 2, 3}
print(inspect({a=1,b=2})
-- {
--   a = 1
--   b = 2
-- }

यह ठीक से सबटाइब करता है, और "पुनरावर्ती तालिकाओं" को संभालता है (तालिकाओं में स्वयं के संदर्भ हैं), इसलिए यह अनंत छोरों में नहीं मिलता है। यह एक समझदार तरीके से मूल्यों को क्रमबद्ध करता है। यह मेटाबेटी जानकारी को भी प्रिंट करता है।

सादर!


हो सकता है कि आपको अपनी लाइब्रेरी को लुआ विकी से जोड़ना चाहिए । मैं देख रहा हूं कि आपकी लाइब्रेरी मेटाबेबल्स को भी प्रिंट करती है, जो अन्य लाइब्रेरी नहीं करती हैं।
मिखल कोट्टमन

बात यह है कि निरीक्षण.लुआ वास्तव में "क्रमांकन" श्रेणी में फिट नहीं होता है। वह पाठ जो लौटाता है वह मान्य Lua कोड नहीं है; यह डीबगिंग / मानव रीड के लिए उपयोग किया जाना चाहिए। मुझे लगता है कि मैं अंत में एक छोटी सी कड़ी जोड़ सकता हूं या कुछ और।
किक्टो

1
विकी में निरीक्षण किया।
किकिटो

कृपया इसे 18:58 पर luarocks
Hack-R

3
@ हैक-आर यह लॉरॉक पर है:luarocks install inspect
किकिटो

86

मैंने इसे एक उपयोगी पाया है। क्योंकि यदि पुनरावृत्ति होती है तो यह नेस्टेड टेबल को भी प्रिंट कर सकता है। यह आउटपुट में सबसे सुंदर स्वरूपण नहीं देता है, लेकिन इस तरह के एक सरल कार्य के लिए डिबगिंग के लिए हरा करना मुश्किल है।

function dump(o)
   if type(o) == 'table' then
      local s = '{ '
      for k,v in pairs(o) do
         if type(k) ~= 'number' then k = '"'..k..'"' end
         s = s .. '['..k..'] = ' .. dump(v) .. ','
      end
      return s .. '} '
   else
      return tostring(o)
   end
end

जैसे

local people = {
   {
      name = "Fred",
      address = "16 Long Street",
      phone = "123456"
   },

   {
      name = "Wilma",
      address = "16 Long Street",
      phone = "123456"
   },

   {
      name = "Barney",
      address = "17 Long Street",
      phone = "123457"
   }

}

print("People:", dump(people))

निम्नलिखित उत्पादन करता है:

लोग: {[1] = {["पता"] = 16 लंबी सड़क, ["फोन"] = 123456, ["नाम"] = फ्रेड,}, [2] = {["पता"] = 16 लंबी सड़क , ["फोन"] = 123456, ["नाम"] = विल्मा,}, [3] = {["पता"] = 17 लंबी स्ट्रीट, ["फोन"] = 123457, ["नाम"] = बार्नी, }}


1
अच्छी तरह से कुछ साझा करने के लिए किया जाता है जिसे बाहरी पुस्तकालय की आवश्यकता नहीं है।
जूलियन नाइट

वास्तव में बड़ी मेज पर आपका कार्य
स्टैकओवरफ़्लो

20

यह पाया:

-- Print contents of `tbl`, with indentation.
-- `indent` sets the initial level of indentation.
function tprint (tbl, indent)
  if not indent then indent = 0 end
  for k, v in pairs(tbl) do
    formatting = string.rep("  ", indent) .. k .. ": "
    if type(v) == "table" then
      print(formatting)
      tprint(v, indent+1)
    elseif type(v) == 'boolean' then
      print(formatting .. tostring(v))      
    else
      print(formatting .. v)
    end
  end
end

यहाँ से https://gist.github.com/ripter/4270799

मेरे लिए बहुत अच्छा काम करता है ...


19

अधिकांश शुद्ध लुआ प्रिंट टेबल फ़ंक्शन मैंने देखा है कि गहरी पुनरावृत्ति के साथ एक समस्या है और बहुत गहरे जाने पर स्टैक ओवरफ्लो का कारण बनता है। यह प्रिंट टेबल फ़ंक्शन जो मैंने लिखा है, उसमें यह समस्या नहीं है। यह जिस तरह से संघनन को संभालता है, उसके कारण वास्तव में बड़ी तालिकाओं को संभालने में सक्षम होना चाहिए। इस फ़ंक्शन के मेरे व्यक्तिगत उपयोग में, यह लगभग 63 सेकेंड में फाइल करने के लिए 63k लाइनों का उत्पादन करता है।

आउटपुट लुआ सिंटैक्स भी रखता है और स्क्रिप्ट को केवल फ़ाइल, बूलियन, स्ट्रिंग और टेबल डेटा प्रकारों को प्रारूपित करने की अनुमति देने के लिए संशोधित करके सरल निरंतर भंडारण के लिए संशोधित किया जा सकता है।

function print_table(node)
    local cache, stack, output = {},{},{}
    local depth = 1
    local output_str = "{\n"

    while true do
        local size = 0
        for k,v in pairs(node) do
            size = size + 1
        end

        local cur_index = 1
        for k,v in pairs(node) do
            if (cache[node] == nil) or (cur_index >= cache[node]) then

                if (string.find(output_str,"}",output_str:len())) then
                    output_str = output_str .. ",\n"
                elseif not (string.find(output_str,"\n",output_str:len())) then
                    output_str = output_str .. "\n"
                end

                -- This is necessary for working with HUGE tables otherwise we run out of memory using concat on huge strings
                table.insert(output,output_str)
                output_str = ""

                local key
                if (type(k) == "number" or type(k) == "boolean") then
                    key = "["..tostring(k).."]"
                else
                    key = "['"..tostring(k).."']"
                end

                if (type(v) == "number" or type(v) == "boolean") then
                    output_str = output_str .. string.rep('\t',depth) .. key .. " = "..tostring(v)
                elseif (type(v) == "table") then
                    output_str = output_str .. string.rep('\t',depth) .. key .. " = {\n"
                    table.insert(stack,node)
                    table.insert(stack,v)
                    cache[node] = cur_index+1
                    break
                else
                    output_str = output_str .. string.rep('\t',depth) .. key .. " = '"..tostring(v).."'"
                end

                if (cur_index == size) then
                    output_str = output_str .. "\n" .. string.rep('\t',depth-1) .. "}"
                else
                    output_str = output_str .. ","
                end
            else
                -- close the table
                if (cur_index == size) then
                    output_str = output_str .. "\n" .. string.rep('\t',depth-1) .. "}"
                end
            end

            cur_index = cur_index + 1
        end

        if (size == 0) then
            output_str = output_str .. "\n" .. string.rep('\t',depth-1) .. "}"
        end

        if (#stack > 0) then
            node = stack[#stack]
            stack[#stack] = nil
            depth = cache[node] == nil and depth + 1 or depth - 1
        else
            break
        end
    end

    -- This is necessary for working with HUGE tables otherwise we run out of memory using concat on huge strings
    table.insert(output,output_str)
    output_str = table.concat(output)

    print(output_str)
end

यहाँ एक उदाहरण है:

local t = {
    ["abe"] = {1,2,3,4,5},
    "string1",
    50,
    ["depth1"] = { ["depth2"] = { ["depth3"] = { ["depth4"] = { ["depth5"] = { ["depth6"] = { ["depth7"]= { ["depth8"] = { ["depth9"] = { ["depth10"] = {1000}, 900}, 800},700},600},500}, 400 }, 300}, 200}, 100},
    ["ted"] = {true,false,"some text"},
    "string2",
    [function() return end] = function() return end,
    75
}

print_table(t)

आउटपुट:

{
    [1] = 'string1',
    [2] = 50,
    [3] = 'string2',
    [4] = 75,
    ['abe'] = {
        [1] = 1,
        [2] = 2,
        [3] = 3,
        [4] = 4,
        [5] = 5
    },
    ['function: 06472B70'] = 'function: 06472A98',
    ['depth1'] = {
        [1] = 100,
        ['depth2'] = {
            [1] = 200,
            ['depth3'] = {
                [1] = 300,
                ['depth4'] = {
                    [1] = 400,
                    ['depth5'] = {
                        [1] = 500,
                        ['depth6'] = {
                            [1] = 600,
                            ['depth7'] = {
                                [1] = 700,
                                ['depth8'] = {
                                    [1] = 800,
                                    ['depth9'] = {
                                        [1] = 900,
                                        ['depth10'] = {
                                            [1] = 1000
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    },
    ['ted'] = {
        [1] = true,
        [2] = false,
        [3] = 'some text'
    }
}

tabसमारोह अधूरा है। यह मूल रूप से सिर्फ string.repeat('\t', amt)लेकिन अभी तक कम प्रदर्शन करने वाला है।
वैल का कहना है कि मोनिका

6

जैसा कि पहले उल्लेख किया गया है, आपको इसे लिखना होगा। यहाँ मेरा विनम्र संस्करण है: (सुपर बेसिक)

function tprint (t, s)
    for k, v in pairs(t) do
        local kfmt = '["' .. tostring(k) ..'"]'
        if type(k) ~= 'string' then
            kfmt = '[' .. k .. ']'
        end
        local vfmt = '"'.. tostring(v) ..'"'
        if type(v) == 'table' then
            tprint(v, (s or '')..kfmt)
        else
            if type(v) ~= 'string' then
                vfmt = tostring(v)
            end
            print(type(t)..(s or '')..kfmt..' = '..vfmt)
        end
    end
end

उदाहरण:

local mytbl = { ['1']="a", 2, 3, b="c", t={d=1} }
tprint(mytbl)

आउटपुट (Lua 5.0):

table[1] = 2
table[2] = 3
table["1"] = "a"
table["t"]["d"] = 1
table["b"] = "c"

1
बिल्कुल असली! मुझें यह पसंद है।
जैक गिफिन

2

table.tostringकी metehod metalua वास्तव में बहुत पूरा हो गया है। यह नेस्टेड तालिकाओं से संबंधित है, इंडेंटेशन स्तर परिवर्तनशील है, ... https://github.com/fab13n/metalua/blob/master/src/lib/metalua/table2.lua देखें


2
चेतावनी, यह इंडेक्स 0 को डंप नहीं करेगा भले ही वह सेट हो
Janus Troelsen

2

यह मेरा संस्करण है जो टेबल और यूजरडाटा को छोड़कर समर्थन करता है

-- Lua Table View by Elertan
table.print = function(t, exclusions)
    local nests = 0
    if not exclusions then exclusions = {} end
    local recurse = function(t, recurse, exclusions)
        indent = function()
            for i = 1, nests do
                io.write("    ")
            end
        end
        local excluded = function(key)
            for k,v in pairs(exclusions) do
                if v == key then
                    return true
                end
            end
            return false
        end
        local isFirst = true
        for k,v in pairs(t) do
            if isFirst then
                indent()
                print("|")
                isFirst = false
            end
            if type(v) == "table" and not excluded(k) then
                indent()
                print("|-> "..k..": "..type(v))
                nests = nests + 1
                recurse(v, recurse, exclusions)
            elseif excluded(k) then
                indent()
                print("|-> "..k..": "..type(v))
            elseif type(v) == "userdata" or type(v) == "function" then
                indent()
                print("|-> "..k..": "..type(v))
            elseif type(v) == "string" then
                indent()
                print("|-> "..k..": ".."\""..v.."\"")
            else
                indent()
                print("|-> "..k..": "..v)
            end
        end
        nests = nests - 1
    end

    nests = 0
    print("### START TABLE ###")
    for k,v in pairs(t) do
        print("root")
        if type(v) == "table" then
            print("|-> "..k..": "..type(v))
            nests = nests + 1
            recurse(v, recurse, exclusions)
        elseif type(v) == "userdata" or type(v) == "function" then
            print("|-> "..k..": "..type(v))
        elseif type(v) == "string" then
            print("|-> "..k..": ".."\""..v.."\"")
        else
            print("|-> "..k..": "..v)
        end
    end
    print("### END TABLE ###")
end

यह एक उदाहरण है

t = {
    location = {
       x = 10,
       y = 20
    },
    size = {
      width = 100000000,
      height = 1000,
    },
    name = "Sidney",
    test = {
        hi = "lol",
    },
    anotherone = {
        1, 
        2, 
        3
    }
}

table.print(t, { "test" })

प्रिंटों:

   ### START TABLE ###
root
|-> size: table
    |
    |-> height: 1000
    |-> width: 100000000
root
|-> location: table
    |
    |-> y: 20
    |-> x: 10
root
|-> anotherone: table
    |
    |-> 1: 1
    |-> 2: 2
    |-> 3: 3
root
|-> test: table
    |
    |-> hi: "lol"
root
|-> name: "Sidney"
### END TABLE ###

ध्यान दें कि रूट बहिष्करण को नहीं हटाता है


2

JSON के रूप में प्रारूप (आप बाद में आईडीई में "सुशोभित कर सकते हैं"):

local function format_any_value(obj, buffer)
    local _type = type(obj)
    if _type == "table" then
        buffer[#buffer + 1] = '{"'
        for key, value in next, obj, nil do
            buffer[#buffer + 1] = tostring(key) .. '":'
            format_any_value(value, buffer)
            buffer[#buffer + 1] = ',"'
        end
        buffer[#buffer] = '}' -- note the overwrite
    elseif _type == "string" then
        buffer[#buffer + 1] = '"' .. obj .. '"'
    elseif _type == "boolean" or _type == "number" then
        buffer[#buffer + 1] = tostring(obj)
    else
        buffer[#buffer + 1] = '"???' .. _type .. '???"'
    end
end

उपयोग:

local function format_as_json(obj)
    if obj == nil then return "null" else
        local buffer = {}
        format_any_value(obj, buffer)
        return table.concat(buffer)
    end
end

local function print_as_json(obj)
    print(_format_as_json(obj))
end

print_as_json {1, 2, 3}
print_as_json(nil)
print_as_json("string")
print_as_json {[1] = 1, [2] = 2, three = { { true } }, four = "four"}

BTW, मैंने कई अन्य समाधान भी लिखे: एक बहुत तेज , और एक विशेष चरित्र के साथ भागने वाला: https://github.com/vn971/fast_json_encode


यह वास्तव में है कि मैं क्या देख रहा था, भले ही यह विशेष रूप से नहीं पूछ रहा था। इस तरह के सरल समाधान के लिए धन्यवाद। NodeMCU जैसे अंतरिक्ष-विवश Lua envs में उपयोग करना आसान बनाता है।
Sawtaytoes

1

आपको इसे स्वयं कोड करना होगा मुझे डर है। मैंने यह लिखा है, और यह आपके कुछ काम आ सकता है

function printtable(table, indent)

  indent = indent or 0;

  local keys = {};

  for k in pairs(table) do
    keys[#keys+1] = k;
    table.sort(keys, function(a, b)
      local ta, tb = type(a), type(b);
      if (ta ~= tb) then
        return ta < tb;
      else
        return a < b;
      end
    end);
  end

  print(string.rep('  ', indent)..'{');
  indent = indent + 1;
  for k, v in pairs(table) do

    local key = k;
    if (type(key) == 'string') then
      if not (string.match(key, '^[A-Za-z_][0-9A-Za-z_]*$')) then
        key = "['"..key.."']";
      end
    elseif (type(key) == 'number') then
      key = "["..key.."]";
    end

    if (type(v) == 'table') then
      if (next(v)) then
        printf("%s%s =", string.rep('  ', indent), tostring(key));
        printtable(v, indent);
      else
        printf("%s%s = {},", string.rep('  ', indent), tostring(key));
      end 
    elseif (type(v) == 'string') then
      printf("%s%s = %s,", string.rep('  ', indent), tostring(key), "'"..v.."'");
    else
      printf("%s%s = %s,", string.rep('  ', indent), tostring(key), tostring(v));
    end
  end
  indent = indent - 1;
  print(string.rep('  ', indent)..'}');
end

1
जवाब के लिए धन्यवाद। मैंने यह कोशिश की और मुझे यह मिला: वैश्विक 'सॉर्ट' (एक शून्य मूल्य) कॉल करने का प्रयास
क्लिफ

परिवर्तन sortकरें table.sort... local sort = table.sortकोड में कहीं न कहीं यह अवश्य रहा होगा कि यह कहां से लिया गया था।
मिशाल कोट्टमन

आपको थोड़ा कल्पनाशील होना होगा! सुविधा के लिए लाइब्रेरी टेबल स्पेस से _G तक कई प्रतीक कॉपी किए गए हैं। sortकी एक प्रति है table.sort, strrepहै string.rep, strmatchहै string.matchआदि मुझे पता है अगर वहाँ किसी भी अधिक कर रहे हैं चलो और मैं अपने जवाब को बदल देंगे।
बोरोडिन

मुझे क्षमा करें, मेरे पास तालिकाओं का एक बहुत गहरा जाल भी है, क्योंकि मेरे स्वयं के प्रयास एक ढाँचे के अतिप्रवाह के साथ मिले ढांचे को फिर से बनाने का है। (कोई सज़ा का इरादा नहीं है!) मैं अपने सिर को पीट रहा था ताकि अपनी पुनरावृत्ति को कम करने और उचित पूंछ कॉल का उपयोग करने की कोशिश करूं लेकिन मैं यहां किस बिंदु पर निराश हो गया।
22

आप सामान्य रूप से इस तरह के एक समारोह से पुनरावृत्ति को दूर नहीं कर सकते, क्योंकि यह अंत-पुनरावर्ती नहीं है। या तो बड़े स्टैक के साथ निर्मित एक लुआ का उपयोग करें, या पुनरावृत्ति स्टैक को स्टोर करने के लिए लुआ तालिका का उपयोग करके एक ही एल्गोरिदम को लागू करें।
बोरोडिन

1
--~ print a table
function printTable(list, i)

    local listString = ''
--~ begin of the list so write the {
    if not i then
        listString = listString .. '{'
    end

    i = i or 1
    local element = list[i]

--~ it may be the end of the list
    if not element then
        return listString .. '}'
    end
--~ if the element is a list too call it recursively
    if(type(element) == 'table') then
        listString = listString .. printTable(element)
    else
        listString = listString .. element
    end

    return listString .. ', ' .. printTable(list, i + 1)

end


local table = {1, 2, 3, 4, 5, {'a', 'b'}, {'G', 'F'}}
print(printTable(table))

हाय यार, मैंने एक सिपाही कोड लिखा है जो शुद्ध लुआ में ऐसा करता है, इसमें एक बग होता है (सूची के अंतिम तत्व के बाद कोमा लिखें) लेकिन मैंने इसे एक प्रोटोटाइप के रूप में जल्दी से कैसे लिखा, मैं इसे आपको अपने अनुकूल करने के लिए अनुमति दूंगा की जरूरत है।


1

एक और संस्करण जोड़ना। यह एक उपयोगकर्ताडेटा पर भी पुनरावृति करने की कोशिश करता है।

function inspect(o,indent)
    if indent == nil then indent = 0 end
    local indent_str = string.rep("    ", indent)
    local output_it = function(str)
        print(indent_str..str)
    end

    local length = 0

    local fu = function(k, v)
        length = length + 1
        if type(v) == "userdata" or type(v) == 'table' then
            output_it(indent_str.."["..k.."]")
            inspect(v, indent+1)
        else
            output_it(indent_str.."["..k.."] "..tostring(v))
        end
    end

    local loop_pairs = function()
        for k,v in pairs(o) do fu(k,v) end
    end

    local loop_metatable_pairs = function()
        for k,v in pairs(getmetatable(o)) do fu(k,v) end
    end

    if not pcall(loop_pairs) and not pcall(loop_metatable_pairs) then
        output_it(indent_str.."[[??]]")
    else
        if length == 0 then
            output_it(indent_str.."{}")
        end
    end
end

1

मैं टेबल की सामग्री को प्रिंट करने के लिए अपने स्वयं के फ़ंक्शन का उपयोग करता हूं, लेकिन यह सुनिश्चित नहीं करता है कि यह आपके वातावरण में कितनी अच्छी तरह अनुवाद करता है:

---A helper function to print a table's contents.
---@param tbl table @The table to print.
---@param depth number @The depth of sub-tables to traverse through and print.
---@param n number @Do NOT manually set this. This controls formatting through recursion.
function PrintTable(tbl, depth, n)
  n = n or 0;
  depth = depth or 5;

  if (depth == 0) then
      print(string.rep(' ', n).."...");
      return;
  end

  if (n == 0) then
      print(" ");
  end

  for key, value in pairs(tbl) do
      if (key and type(key) == "number" or type(key) == "string") then
          key = string.format("[\"%s\"]", key);

          if (type(value) == "table") then
              if (next(value)) then
                  print(string.rep(' ', n)..key.." = {");
                  PrintTable(value, depth - 1, n + 4);
                  print(string.rep(' ', n).."},");
              else
                  print(string.rep(' ', n)..key.." = {},");
              end
          else
              if (type(value) == "string") then
                  value = string.format("\"%s\"", value);
              else
                  value = tostring(value);
              end

              print(string.rep(' ', n)..key.." = "..value..",");
          end
      end
  end

  if (n == 0) then
      print(" ");
  end
end

-1

मैंने विनम्रतापूर्वक थोड़ा अलुंडियो कोड संशोधित किया है:

-- by Alundaio
-- KK modified 11/28/2019

function dump_table_to_string(node, tree, indentation)
    local cache, stack, output = {},{},{}
    local depth = 1


    if type(node) ~= "table" then
        return "only table type is supported, got " .. type(node)
    end

    if nil == indentation then indentation = 1 end

    local NEW_LINE = "\n"
    local TAB_CHAR = " "

    if nil == tree then
        NEW_LINE = "\n"
    elseif not tree then
        NEW_LINE = ""
        TAB_CHAR = ""
    end

    local output_str = "{" .. NEW_LINE

    while true do
        local size = 0
        for k,v in pairs(node) do
            size = size + 1
        end

        local cur_index = 1
        for k,v in pairs(node) do
            if (cache[node] == nil) or (cur_index >= cache[node]) then

                if (string.find(output_str,"}",output_str:len())) then
                    output_str = output_str .. "," .. NEW_LINE
                elseif not (string.find(output_str,NEW_LINE,output_str:len())) then
                    output_str = output_str .. NEW_LINE
                end

                -- This is necessary for working with HUGE tables otherwise we run out of memory using concat on huge strings
                table.insert(output,output_str)
                output_str = ""

                local key
                if (type(k) == "number" or type(k) == "boolean") then
                    key = "["..tostring(k).."]"
                else
                    key = "['"..tostring(k).."']"
                end

                if (type(v) == "number" or type(v) == "boolean") then
                    output_str = output_str .. string.rep(TAB_CHAR,depth*indentation) .. key .. " = "..tostring(v)
                elseif (type(v) == "table") then
                    output_str = output_str .. string.rep(TAB_CHAR,depth*indentation) .. key .. " = {" .. NEW_LINE
                    table.insert(stack,node)
                    table.insert(stack,v)
                    cache[node] = cur_index+1
                    break
                else
                    output_str = output_str .. string.rep(TAB_CHAR,depth*indentation) .. key .. " = '"..tostring(v).."'"
                end

                if (cur_index == size) then
                    output_str = output_str .. NEW_LINE .. string.rep(TAB_CHAR,(depth-1)*indentation) .. "}"
                else
                    output_str = output_str .. ","
                end
            else
                -- close the table
                if (cur_index == size) then
                    output_str = output_str .. NEW_LINE .. string.rep(TAB_CHAR,(depth-1)*indentation) .. "}"
                end
            end

            cur_index = cur_index + 1
        end

        if (size == 0) then
            output_str = output_str .. NEW_LINE .. string.rep(TAB_CHAR,(depth-1)*indentation) .. "}"
        end

        if (#stack > 0) then
            node = stack[#stack]
            stack[#stack] = nil
            depth = cache[node] == nil and depth + 1 or depth - 1
        else
            break
        end
    end

    -- This is necessary for working with HUGE tables otherwise we run out of memory using concat on huge strings
    table.insert(output,output_str)
    output_str = table.concat(output)

    return output_str

end

फिर:

print(dump_table_to_string("AA", true,3))

print(dump_table_to_string({"AA","BB"}, true,3))

print(dump_table_to_string({"AA","BB"}))

print(dump_table_to_string({"AA","BB"},false))

print(dump_table_to_string({"AA","BB",{22,33}},true,2))

देता है:

only table type is supported, got string

{
   [1] = 'AA',
   [2] = 'BB'
}

{
 [1] = 'AA',
 [2] = 'BB'
}

{[1] = 'AA',[2] = 'BB'}

{
  [1] = 'AA',
  [2] = 'BB',
  [3] = {
    [1] = 22,
    [2] = 33
  }
}
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.