मजकूराशीं उडकी मार

एकक:string/startswith

Wiktionary कडल्यान

Documentation for this module may be created at एकक:string/startswith/doc

local sub = string.sub

--[==[
Returns {true} if the string {str} starts with the string {val}, or {false} if not. The optional indices {i} and {j} can be used to check a substring of {str}.

Note that {val} is a string literal, not a Lua pattern.]==]
return function(str, val, i, j)
	return sub(i == nil and j == nil and str or sub(str, i, j), 1, #val) == val
end
"https://gom.wiktionary.org/w/index.php?title=एकक:string/startswith&oldid=25130" चे कडल्यान परतून मेळयलें