Modul:StringHelpers forrásának megtekintése
Jump to navigation
Jump to search
Nincs jogosultságod a következő művelet elvégzéséhez: lap szerkesztése, a következő ok miatt:
Megtekintheted és másolhatod a lap forrását.
local p = {}
function p.getParagraphFromQuestion(param)
dashIndex = string.find(param.args[1], '-', 1, true);
if (dashIndex ~= nil)
then
if (dashIndex - 3 > 0 and tonumber(string.sub(param.args[1], dashIndex - 3, dashIndex -3)))
then
return string.sub(param.args[1], dashIndex - 3, dashIndex - 1);
end
if (tonumber(string.sub(param.args[1], dashIndex - 2, dashIndex -2)))
then
return string.sub(param.args[1], dashIndex - 2, dashIndex - 1);
end
if (tonumber(string.sub(param.args[1], dashIndex - 1, dashIndex -1)))
then
return string.sub(param.args[1], dashIndex - 1, dashIndex - 1);
end
else
if (tonumber(string.sub(param.args[1], string.len(param.args[1]) - 2)))
then
000
1:0
A lapon használt sablon:
Vissza a(z) Modul:StringHelpers laphoz.