Difference between revisions of "Module:Sandbox"

From Pathfinder Wiki
Line 28: Line 28:
 
local str = frame.args[1]
 
local str = frame.args[1]
 
mw.log('string: '..str)
 
mw.log('string: '..str)
number = string.match(str, '%d+')
+
number = tonumber(string.match(str, '%d+'))
 
--number = tonumber(str)
 
--number = tonumber(str)
 
if (number ~= nil) then
 
if (number ~= nil) then

Revision as of 16:10, 22 July 2021

Documentation for this module may be created at Module:Sandbox/doc

local p = {}
local utilities = require ( "Module:Utilities" )

function p.expandTemplate( frame )
	mw.log(frame:expandTemplate{ title = 'User:DesignerThan/Sandbox/expandTemplate' })
end

function p.lst( frame )
	mw.log('Test')
	local strFromTrans = frame:callParserFunction( '#lst', { 'Localization:All/de', 'LoremIpsum' })
	mw.log('strFromTrans: |'..strFromTrans..'|')
end

function p.testLocalize( frame )
	local retVal = utilities.localize( 'Requirements' )
	mw.log('retVal: '..retVal)
end

function p.variableScope( frame )
	if ( globalVar == nil ) then
		mw.log( 'globalVar == nil')
	end
	globalVar = 'test'
	mw.log('globalVar: '..globalVar)
end

function p.toNumber( frame )
	local str = frame.args[1]
	mw.log('string: '..str)
	number = tonumber(string.match(str, '%d+'))
	--number = tonumber(str)
	if (number ~= nil) then
		mw.log('number: '..number)
	else
		mw.log('number is nil')
	end
end


function p.callInputTest( frame )
	inputTest('calledTest')
end

function inputTest(inString)
	mw.log(inString)
	inString = 'Hello World'
	mw.log(inString)
end

return p