Difference between revisions of "Module:StringHelpers"
Jump to navigation
Jump to search
| Line 6: | Line 6: | ||
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:27, 12 April 2020
Module supports numbers with max 3 digits.
Tests
Simple question
| Expected | Actual |
|---|---|
| 150 | simple question |
| 15 | simple question |
| 7 | simple question |
| 150 | simple question |
| 15 | simple question |
| 7 | simple 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 (dashIndex ~= nil)
then
return "complex question"
else
return "simple question"
end
end
return p