You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for a given set of text manipulating chunks: a and b and a pattern p:
// any <br> following another <br>letp=/(?<=<br>)<br>/leta=''letb='<br>'
Match results from b would change if a changed to <br>. When matching just b individually it would be good to know if it backtracked to the start of b for lookbehind not just if it reached the end of b.
This is a slight oddity due to less ecosystem data on lookbehind. This could be in or out of scope depending.
The text was updated successfully, but these errors were encountered:
for a given set of text manipulating chunks:
a
andb
and a patternp
:Match results from
b
would change ifa
changed to<br>
. When matching justb
individually it would be good to know if it backtracked to the start ofb
for lookbehind not just if it reached the end ofb
.This is a slight oddity due to less ecosystem data on lookbehind. This could be in or out of scope depending.
The text was updated successfully, but these errors were encountered: