Module:StringHelpers

From Data JW United
Revision as of 12:57, 12 April 2020 by Administrator (talk | contribs)
Jump to navigation Jump to search

Module supports numbers with max 3 digits.

Tests

Simple question

Expected Actual
150
15
7
150
15
7

Complex question

Expected Actual
6 1111
7 1111
10 1212
99 1212
101 1313
6 22
7 22
10 33
99 33
101 44

local p = {}

function p.getParagraphFromQuestion(param)
	return string.find(param.args[1], '-', 1, true)
end

return p