Matching two lines of HTML code with a web page's code? [closed]
I am using rprxoy to get the date when a player joined ROBLOX, but it seems Lua can't match two lines of HTML code next to each other to the page's code.
This is the code that isn't working:
04 | local cut = [[<p class="stat-title">Join Date</p><p class="rbx-lead">%.+</p>]] |
07 | local success,msg = pcall ( function () html = serv:GetAsync(link, false ) end ) |
10 | local find = html:match(cut) |
15 | return "Cannot Get Join Date" |
18 | return "Cannot Get Join Date" |
So how would I do this?
Info on the profile page often has the same lines of code, with the only difference between them being located in the %.+
I have included in the cut variable.
NOTE TO MODS:
I have seen a question like this before, but I can't find it again :/
Marked as Duplicate by BlueTaslem
This question has been asked before, and already has an answer. If those answers do not fully address your question, then please ask a new question here.
Why was this question closed?