the input string to apply the prefix replacement to.
the prefix string of the input to replace.
the optional value to replace the the prefix with. defaults to ""
(empty string).
if a matching prefix
is found in the input
, then it will be replaced with the given value
.
otherwise, undefined
will be returned if the input
does not begin with the prefix
.
replace the
prefix
of of a giveninput
string with the given replacevalue
. if a matching prefix is not found, thenundefined
will be returned.Example