I\'m trying to make a simple string manipulation: getting the a file\'s name, without the extension. Only, string.find() seem to have an issue with dots:
string.find()
Do either string.find(s, '%.') or string.find(s, '.', 1, true)
string.find(s, '%.')
string.find(s, '.', 1, true)