Item number of () in ()

From PenguinMod Wiki
Revision as of 21:50, 25 June 2024 by MediansSC (talk | contribs) (Created page with "{{Infobox Block |category = Lists |title = item # of () in () |block_name = item # of [] in [ v] |block_type = Reporter Block }} {{Incorrect Title|item # of () in ()}} The '''item # of () in ()''' block is a reporter block in the Lists category that reports the item number of the first occurrence of the inputted item in the selected list. It was introduced in Scratch 3.0. ==Workaround== This block can be worked around using the following code: <scratchblocks> def...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
item # of () in ()
item # of [] in [ v]
Caption
Block Type Reporter Block
Category / Extension Lists
Status Who tf uses status
The correct title of this article is item # of () in (). PenguinMod Wiki uses Item number of () in () instead because of technical restrictions.

The item # of () in () block is a reporter block in the Lists category that reports the item number of the first occurrence of the inputted item in the selected list. It was introduced in Scratch 3.0.

Workaround

This block can be worked around using the following code:

define find item # of (string1)
set [item number v] to [0] //keep track of the item in the list
if <[list v] contains (string1)?> then
repeat until <(item (item number) of [list v]) = (string1)>
change [item number v] by (1)
end
end
return (item number) ::custom cap