Jump to content

مشكلة عويسة :)


#Major .

Recommended Posts

السلام عليكم

عندي جدول رقم 1

وكامبو بوكس

الجدول رقم 1 فيه اكثر من قيمة تحمل تواريخ لكن التواريخ هذي مكرره مثال

Data = { "[10/10/2018]",  "[10/10/2018]",  "[10/10/2018]",  "[20/30/2018]",  "[20/30/2018]" }

انا ابي التواريخ تنظاف في الكمبو بوكس لكن م ابيها تتكرر يعني كل تاريخ ينزل منه واحد بس م ابيه ينزل مكرر

ان شاء الله وضحت الفكرة :)

 

Link to comment

سويت لك فنكشن بسيط

function clearDuplicated(tab)
    if type(tab) == "table" then
        local cleared = {}
        local cached = {}
        for _,value in ipairs(tab) do
            if not cached[value] then
                cached[value] = true
                table.insert(cleared, value)
            end
        end
        return cleared
    end
    return false
end

 

Link to comment
7 hours ago, #,xiRocKyz said:

سويت لك فنكشن بسيط


function clearDuplicated(tab)
    if type(tab) == "table" then
        local cleared = {}
        local cached = {}
        for _,value in ipairs(tab) do
            if not cached[value] then
                cached[value] = true
                table.insert(cleared, value)
            end
        end
        return cleared
    end
    return false
end

 

ينطيك العافية

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...