I am new to Lua language and I want add a substring at specific postion within a string..like I want to save a file every time with a new name. My file is stored in "name.extension" format.What I want is to add a counter each time the file generate so that it is stored with a new name every time like "name1.extension" and next time "name2.extension" etc. I just need to see the dot position and then add counter before this dot... Can anybody help me here?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Well, the easy way is using string.format
|
|||
|
|
|
Try
or
|
|||
|
|