I have the following content:
123|321|1234\|56\|teste\||123
I would like to make a regex replace
that would replace all |
with line break and ignore |
escaped with \
, so I would like to get the following return:
123
321
1234|56teste|
123
If someone has an alternative that is not regex
, it works.