string/Explode - Garry's Mod
Examples Example Splits a sentence into a table of the words in it. local sentence = "hello there my name is drakehawke" local words = string.Explode( " ", sentence ) PrintTable( words ) Output: 1 = hello 2 = there 3 = my 4 = name 5 = is 6 = drakehawke Ex...