Open husni opened 9 years ago
This might be related to a similar error for which I ended up using TextMate. Given:
LASTNAME
Firstname
I used:
Find: ([A-Z])\n
Replace: $1-
Result:
LASTNAME-
Firstname
Expected:
LASTNAME-Firstname
Reproduced using Atom v1.6.0-dev-0893201 on Mac OS X 10.11.2
Repro steps:
test123
followed by Enter(.*)
in Find input$1x
in Replace inputExpected: Text should be test123x
Actual: Text is test123xx
Bug found when using regex on Atom:
Input string (in the Editor)
Search & Replace using regex Find:
(.*)
Replace:$1x
Result:
Expected:
I am using Atom 1.2.4 on Mac OS X 10.11.1
Moved issue from original Atom repo: https://github.com/atom/atom/issues/9807