I have the a string like this (separtred by asterisk) :
abc*dddd*fffff*
i need to replace the *
with a newline. i.e the result should be:
abc
dddd
fffff
How can I do this in Emacs? I tried query-replace
but pressing enter doesn't do what I want.