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
consider the following transform: 'Hello Test Test' replace /Test/ with 'World, before this it returns 'Hello World Test' and we can not use a flag to replace all occurrences of Test. After implementing this, we can write 'Hello Test Test' replace /Test/g with 'World which returns 'Hello World World'.
there are some "regex for regex" examples out there (e.g., https://stackoverflow.com/a/17843773). This seems like it would be an improvement over our current regex regex but still as if it might contain big issues. I'd probably go with the easy regex expression we have right now (using / as delimiter) and just add the gmi flags in addition.
Definitions of Done
A PR has been opened and accepted
All user acceptance criteria are met
All tests are passing
The text was updated successfully, but these errors were encountered:
User Story
User Acceptance Criteria
Examples
'Hello Test Test' replace /Test/ with 'World
, before this it returns'Hello World Test'
and we can not use a flag to replace all occurrences ofTest
. After implementing this, we can write'Hello Test Test' replace /Test/g with 'World
which returns'Hello World World'
.Notes
gmi
flags in addition.Definitions of Done
The text was updated successfully, but these errors were encountered: