Hi there,
how would I extract in LUA a text between a pattern
for example s=“this is a test string. <!2014-05-03 23:12:08!> something more”
I would need only the date/time as result: 2014-05-03 23:12:08
print(string.gsub(s, “%<!.-%!>”)) doesnt work
2.
I would need all the text WITHOUT the date/time like:
this is a test string. something more"
thanks a lot !