I'm trying to learn how to use regexps in lua but I see no results, so I'm asking for help.
I got two types of url:
1) /a/b/c/d/some,text,commas,and,so,on,FILE.dat
2) /a/b/c/d/FILE.dat
I need to do two things:
- get substring with filename:
FILE.dat - get substring with path:
/a/b/c/d/FILE.dat
I have written regex which retrieves me a filename from a first case:
string.match(url, ".*,(.*)")
similar regex retrives me a filename from second case:
string.match(url, ".*/(.*)")
Now can You tell me, how to merge this two regexs into one?