Thierry FOURNIER / OZON.IO 8a1027aa45 MINOR: lua: Add tokenize function.
For tokenizing a string, standard Lua recommends to use regexes.
The followinf example splits words:

   for i in string.gmatch(example, "%S+") do
      print(i)
   end

This is a little bit overkill for simply split words. This patch
adds a tokenize function which quick and do not use regexes.
2016-11-24 21:35:34 +01:00
..
2006-06-15 21:48:13 +02:00
2016-05-10 15:36:58 +02:00
2006-06-15 21:48:13 +02:00