Top "Backreference" questions

Back references are regular expression constructs that make use of capturing in regex to perform replacement based on parts of the matched string captured during a match sequence in the regexp pattern.

Named backreferences with preg_replace

Pretty straightforward; I can't seem to find anything definitive regarding PHP's preg_replace() supporting named backreferences: // should match, replace, and …

php regex preg-replace backreference
%N backreference inside RewriteCond

I'm working on a virtual domain system. I have a wildcard DNS set up as *.loc, and I'm trying to …

apache .htaccess mod-rewrite wildcard-subdomain backreference
Perl Regex Multiple Matches

I'm looking for a regular expression that will behave as follows: input: "hello world." output: he, el, ll, lo, wo, …

regex perl backreference