<table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>Issue</th>
<td>
<a href=https://github.com/llvm/llvm-project/issues/133360>133360</a>
</td>
</tr>
<tr>
<th>Summary</th>
<td>
[libc++] `<regex>`: Undefined backreferences should match empty string
</td>
</tr>
<tr>
<th>Labels</th>
<td>
libc++
</td>
</tr>
<tr>
<th>Assignees</th>
<td>
</td>
</tr>
<tr>
<th>Reporter</th>
<td>
Alcaro
</td>
</tr>
</table>
<pre>
```
> /(a)?\1/.exec("")
Array [ "", undefined ]
> /(a)?\1/.exec("a")
Array [ "", undefined ]
> /(a)?\1/.exec("aa")
Array [ "aa", "a" ]
```
~Firefox
But in libc++, the equivalent operations return `null`, `null` and `[ "aa", "a" ]`. The spec is unambiguous; https://262.ecma-international.org/5.1/#sec-15.10.2.9 5.3 says unmatched backreferences should match the empty string.
Full example: https://godbolt.org/z/ndrqej718 (libstdc++ has the same bug)
Found in [this battery of tests](https://godbolt.org/z/6PnbKzTrn) - most or all of the libc++ failures are this, #133314, or both.
</pre>
<img width="1" height="1" alt="" src="http://email.email.llvm.org/o/eJysVE9vuzgQ_TTmMgryH5zAgQNJy2Uve-h-AAMDuGvs1H-qpIf97CtI2o0qbXcPP8kSmgG_9-bNDCoEPVnEmsgjkU-ZSnF2vm5Mr7zLOjdca7Kn90MbIp6B8JbwUhFeEdESeWKEtzlesCe8JJxvpyK0abxXVyDyCJ_ZEyQ74KgtDkDk0__DU78c8F8Q7_kT3Ek_ER_K_6vVHkd3WdO0OaYI2oLRXU_4cTsniDMCviX9rgzaCO6MXkXtbACPMXkLZE9tMmYFXLm-IlB2WMOf1OxpDi8zQjhjDzpAsmrp9JRcCkQcYY7xHIhoNgNavuc59ovaaRvR202FMrnzE-GtzNn2lQjY75jMGc15XoHMBQR1XZEXFfsZB-hU_6fHET3aHgOE2SUzwPb2VuxyjlcI0Ws75Tdj2mQM4EUtZ4NENN90TW7onIl3IR-Et3bwb_h6YCUQXhrdhTjcHYVZhY0lqAWhS9OtbyuHS3ZY7SfyGGcdoFMxor-CGyFiiGH1i5f_Rb3_3Xa_fbx4S3gFO1hciOA8KGM2oBkf2guj0iZ5DKA8wkp6649gQghWrIHz0Lk459lQi6ESlcqwZodCMEHLg8zmulCjLGRfCsUYpSUdB6wOI-8YY9hVhcx0zSmXVPCSCsqYzOlQjdVYqKLcq0GJAykoLkqb3Jj3Za0k0yEkrFcRe5oZ1aEJ2zpz_jiafF1vX6-3dl2aAimo0SGGf3Cijmb7ETxck0_bTIqTxwkvRDxvUQN_fO3dT_PxOBtZ8qb-1g4d59TlvVsIb1cZ98fu7N0r9pHwdqstEN7ey3uv-d8BAAD__6MCYhc">