select() function in Lua programming


The select function in Lua is used to return the number of arguments that are passed into it as an argument. It can be used in two forms, the first one includes passing an index and then it will return the numbers that are passed after that number into the function as an argument in a list format, the other pattern is if we pass the length operator as a first argument, in that case it simply returns a count of the multiple arguments that are provided.

Example

Let’s explore both the cases in the examples shown below.

Case 1

 Live Demo

print(select(1, "a", "b", "c")) --> a b c
print(select(2, "a", "b", "c")) --> b c
print(select(3, "a", "b", "c")) --> c

In the above example, we have passed an index, and we can see that the output from the select function will be the arguments after the given index.

Output

a   b   c
b   c
c

Case 2

 Live Demo

print(select("#")) --> 0
print(select("#", {1, 2, 3}))
print(select("#", 1, 2, 3))
print(select("#", {1,2,3}, 4, 5, {6,7,8}))

In the above example, instead of passing an index, I passed the length operator, and hence the output will simply be the number of arguments passed after it.

Output

0
1
3
4

Updated on: 19-Jul-2021

6K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements