local match = string.match("1609240-1_1609240-2_1609240-3", "1609240-1")
print(match)
This prints nil even though the shorter string is included in the longer string. Anyone know what I’m doing wrong? Also tried string.find() and it still did not work.