I'm looking at this
One use of
regexp-quote
is to combine an exact string match with context described as a regular expression. For example, this searches for the string that is the value of string, surrounded by whitespace:(re-search-forward (concat "\\s-" (regexp-quote string) "\\s-"))
and wondering how to adapt it to do simply go through the file and search for a word that is surrounded by one or more spaces, i.e., whitespace. I'd like to do it as a regex search in the minibuffer. Tried Search/Regex Forward from the menu, also M-x :
to type it as a command in the minibuffer -- all to no avail. Once again, I'm lost in a "guess-and-test" loop.