asSingleRecipe method
Implementation
RegExpRecipe asSingleRecipe([RegExpRecipe? between]) => regExpBuilder.concat([
begin,
between ?? regExpBuilder.zeroOrMore(regExpBuilder.anything),
end,
]);
RegExpRecipe asSingleRecipe([RegExpRecipe? between]) => regExpBuilder.concat([
begin,
between ?? regExpBuilder.zeroOrMore(regExpBuilder.anything),
end,
]);