Difference between revisions of "Module:StringHelpers"
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); | ||
| − | + | return tonumber(string.sub(param.args[1], dashIndex - 2)); | |
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
end | end | ||
| − | |||
| − | |||
Revision as of 17:29, 12 April 2020
Module supports numbers with max 3 digits.
Tests
Simple question
| Expected | Actual |
|---|---|
| 150 | Script error: The module returned a nil value. It is supposed to return an export table. |
| 15 | Script error: The module returned a nil value. It is supposed to return an export table. |
| 7 | Script error: The module returned a nil value. It is supposed to return an export table. |
| 150 | Script error: The module returned a nil value. It is supposed to return an export table. |
| 15 | Script error: The module returned a nil value. It is supposed to return an export table. |
| 7 | Script error: The module returned a nil value. It is supposed to return an export table. |
Complex question
| Expected | Actual |
|---|---|
| 6 | Script error: The module returned a nil value. It is supposed to return an export table. |
| 7 | Script error: The module returned a nil value. It is supposed to return an export table. |
| 10 | Script error: The module returned a nil value. It is supposed to return an export table. |
| 99 | Script error: The module returned a nil value. It is supposed to return an export table. |
| 101 | Script error: The module returned a nil value. It is supposed to return an export table. |
| 6 | Script error: The module returned a nil value. It is supposed to return an export table. |
| 7 | Script error: The module returned a nil value. It is supposed to return an export table. |
| 10 | Script error: The module returned a nil value. It is supposed to return an export table. |
| 99 | Script error: The module returned a nil value. It is supposed to return an export table. |
| 101 | Script error: The module returned a nil value. It is supposed to return an export table. |
local p = {}
function p.getParagraphFromQuestion(param)
dashIndex = string.find(param.args[1], '-', 1, true);
return tonumber(string.sub(param.args[1], dashIndex - 2));
end