How to check if item exist in array?

array = {421-000-3110-000-00, 421-000-5110-000-00 , 421-000-3610-000-00}

check if 421-000-3110-000-00 exists
output : true

You can also use Contains().

arr.Contains(2)

image

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.