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
The result is "normal" the regex have the g modifier flag set. /gi by default to find all the occurrence.
g modifier: global. All matches (don't return after the first match).
This is the most common case.
In you case the result return 2 matches. (try it https://regex101.com)
So I'm trying to append text to some string and it appends double.
So this:
Turns into this:
The text was updated successfully, but these errors were encountered: