Module:StringHelpers

From Data JW United
Revision as of 13:00, 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 -
7 -
10 -
99 -
101 -
6 -
7 -
10 -
99 -
101 -

local p = {}

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

return p