bmatch

fnauto bmatch(R, RegEx)(R input, RegEx re) if (isSomeString!R && isRegexFor!(RegEx, R))

Start matching of input to regex pattern re, using traditional backtracking matching scheme.

The use of this function is discouraged - use either of

matchAll or matchFirst.

Delegating the kind of operation to "g" flag is soon to be phased out along with the ability to choose the exact matching scheme. The choice of matching scheme to use depends highly on the pattern kind and can done automatically on case by case basis.

Returns

a RegexMatch object holding engine

state after first match.

fnauto bmatch(R, String)(R input, String re) if (isSomeString!R && isSomeString!String)

ditto