I want to insert newline character in regex replace what field.
For example:
Find With: (xyxyxy.*[\r\n]+)(yzyzyz)
Replace with: $1xyxyxy\r\nxyxyxy
also tried replace with: $1xyxyxy$r$nxyxyxy
None of them seems to be working.
Question is what is the mantra to insert carriage return and/or new line via regex replace.