[DiscordArchive] I don't get it, how thes the Tokenizer work.
[DiscordArchive] I don't get it, how thes the Tokenizer work.
Archived author: MR.MUSTACHE • Posted: 2019-06-05T18:28:13.512000+00:00
Original source
I don't get it, how thes the Tokenizer work.
Does it return strs as array or i have to use strs. first and strs.last ?
Archived author: Luka • Posted: 2019-06-05T18:34:14.759000+00:00
Original source
It doesn't return anything, it takes a string and splits it into separate substrings based on the character specified, in the example above the space character was specified, then places all of those strings in a container in this case strs
Archived author: Luka • Posted: 2019-06-05T18:34:31.386000+00:00
Original source
You should be able to retrieve them by doing strs[0], strs[1]
Archived author: MR.MUSTACHE • Posted: 2019-06-05T18:36:11.778000+00:00
Original source
okay ty