1) In my setup process from my image editor to EMACS, I seem to have problems finding a clear way to make a relatively simple task for most editors: find and replace whole words (not substrings) in the text and find exact matches. Mx replace-string finds substrings as well as whole words. Is there a regex that does this?
2) Is there also a way to match exact strings? For example, if I wanted to replace myClaSs with an exact case for each letter, what should I do? Right now, the replace string matches myclass with myCLasS. As soon as I understood, only the first letters in this case match. I guess some regex will take care of this as well.
3) Is it possible to perform a wrapper search? Or I will always have to decide whether I am performing Cs (forward) or Cr (backward)
source share