Difference between revisions of "Module:StringHelpers"

From Data JW United
Jump to navigation Jump to search
Line 3: Line 3:
 
function p.getParagraphFromQuestion(param)
 
function p.getParagraphFromQuestion(param)
 
dashIndex = string.find(param.args[1], '-', 1, true);
 
dashIndex = string.find(param.args[1], '-', 1, true);
 +
 
if (dashIndex ~= nil)  
 
if (dashIndex ~= nil)  
 
then
 
then
return "complex question"
 
 
else
 
 
return "simple question"
 
return "simple question"
 
end
 
end
  
 +
 +
 
end
 
end
 +
 
return p
 
return p

Revision as of 16:24, 12 April 2020

Module supports numbers with max 3 digits.

Tests

Simple question

Expected Actual
150
15
7
150
15
7

Complex question

Expected Actual
6 simple question
7 simple question
10 simple question
99 simple question
101 simple question
6 simple question
7 simple question
10 simple question
99 simple question
101 simple question

local p = {}

function p.getParagraphFromQuestion(param)
	dashIndex = string.find(param.args[1], '-', 1, true);
	
	if (dashIndex ~= nil) 
		then
			return "simple question"
	end

		
	 
end

return p