#Major . Posted November 10, 2018 Share Posted November 10, 2018 السلام عليكم عندي جدول رقم 1 وكامبو بوكس الجدول رقم 1 فيه اكثر من قيمة تحمل تواريخ لكن التواريخ هذي مكرره مثال Data = { "[10/10/2018]", "[10/10/2018]", "[10/10/2018]", "[20/30/2018]", "[20/30/2018]" } انا ابي التواريخ تنظاف في الكمبو بوكس لكن م ابيها تتكرر يعني كل تاريخ ينزل منه واحد بس م ابيه ينزل مكرر ان شاء الله وضحت الفكرة Link to comment
Rockyz Posted November 10, 2018 Share Posted November 10, 2018 سويت لك فنكشن بسيط 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
#Major . Posted November 11, 2018 Author Share Posted November 11, 2018 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
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now