Hello, Im trying to convert what a user has typed to all lowercase then taking that lowercase entry, searhing it through a table, is there anyway to only get the second half of the table and not the whole thing.
This is what I have.
testTable["Jack and Jack"] = "200";
This is what Im trying to do so if you type in “jack and jack” (all lowercase) then it only returns “Jack and Jack = 200”
testTable["jack and jack"] = "Jack and Jack = 200";
it currently returns “jack and jack = Jack and Jack = 200”
print( event.target.text.. " = "..testTable[event.target.text] ) print(testTable[event.target.text])
This is what I use to search ^
Any ideas thanks