int kre_subs(
char *src,
char *dst)
'&' - substitute the entire matched pattern. '\\digit' - substitute a subpattern, with the given tag number. Tags are numbered from 1 to 127. If the particular tagged subpattern does not exist, null is substituted. Other symbols can be used to modify the substitution patterns:
\\Q..\\E - Ignore all special characters between the \\Q and \\E symbols \\l - Convert next character to lower case. \\L..\\E - Convert all text between \\L and \\E to lower case \\u - Convert next character to upper case. \\U..\\E - Convert all text between \\U and \\E to upper case
none
none
$BOOTSTRAP/objects/library/kutils/src/regex.c