blob: 28dd1a926868b9ffc934522baf9a41cb4c2d8c4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
local match = string.match;
module "jid"
function split(jid)
if not jid then return nil; end
local node = match(jid, "^([^@]+)@");
local server = (node and match(jid, ".-@([^@/]+)")) or match(jid, "^([^@/]+)");
local resource = match(jid, "/(.+)$");
return node, server, resource;
end
|