05-29-2013, 01:43 AM
"regular expressions", or "regexps", is a technical way of specifying strings to search for. You most likely know "*.*", "*.exe" which is used for filename matching on windows, regexps are somewhat similar.
I believe Lua has regexp support built in (string.search(), string.gsub()), so this shouldn't be too difficult to make.
I believe Lua has regexp support built in (string.search(), string.gsub()), so this shouldn't be too difficult to make.