“Znajdź tabelę Roblox” Kod odpowiedzi

Znajdź tabelę Roblox

local t = {"a", "b", "c", "d", "e"}
print(table.find(t, "d")) -- 4
print(table.find(t, "z")) -- nil, because z is not in the table
print(table.find(t, "b", 3)) -- nil, because b appears before index 3
tomsterBG

Znajdź tabelę Roblox

table.find(t, element) finds the index position of element. It returns nil if there is no element in the table.

  t = table
  element = thing you're trying to find
  
Its uses are

Quick verification that an element is in the table
Get the index of the element, probably so you can pop it from the list or any other index-based operations rather than element based
val

Odpowiedzi podobne do “Znajdź tabelę Roblox”

Pytania podobne do “Znajdź tabelę Roblox”

Więcej pokrewnych odpowiedzi na “Znajdź tabelę Roblox” w Lua

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu