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(true)
+
if(false)
 
then
 
then
 
  return "simple question"
 
  return "simple question"

Revision as of 13:15, 12 April 2020

Module supports numbers with max 3 digits.

Tests

Simple question

Expected Actual
150 complex question
15 complex question
7 complex question
150 complex question
15 complex question
7 complex question

Complex question

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

local p = {}

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

return p