Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to replace all occurrences of \w \w with \w\\\w in a string, where the \w parts stay the same before and after the replacement, e.g.

[.A foobar] [.B baz]

should result in

[.A\\foobar] [.B\\baz]

it should also work with

[.A' foobar] [.B -baz]

=>

[.A'\\foobar] [.B\\-baz]

From jlf @ #emacs

(while (string-match "\(.*\w\) \(\w\)" str)
  (setq str (concat (match-string 1 str) "\\" (match-string 2 str))))
share|improve this question
If your edit answers your question you should post it as an answer and accept it if no one posts a better solution. – Randy Morris Oct 10 '12 at 1:04
It's not a complete solution, just a hint. – Tass Oct 10 '12 at 4:20

2 Answers

up vote 1 down vote accepted

(replace-regexp-in-string " \\_<\\w+\\_>" (lambda (x) (concat "\\\\s" (substring x 1))) mystring)

share|improve this answer
Nice try, but (replace-regexp-in-string "\_<\w+\_>" (lambda (x) (concat "\\" x)) "[.CP foo]") => "[.CP foo]". – Tass Oct 12 '12 at 14:05
slashes not shown as typed – Andreas Röhler Oct 12 '12 at 16:30
Oh, escape hell. Works almost as expected. "[.CP \\foo]" is the result, but "[.CP\\foo]" would be better. – Tass Oct 12 '12 at 19:19
regexp starts with a whitespace now – Andreas Röhler Oct 13 '12 at 7:56
Would you know how to include - as possible part of the word? – Tass Oct 17 '12 at 18:44
show 1 more comment

This may be a little bit more versatile:

(defun replace-between-words (input replacement &optional preserve)
  "Replaces white space between two words with REPLACEMENT
if REPLACEMENT is a character, and PRESERVE is not NIL, then
that character is duplicated as many times as there are white spaces
between words. If PRESERVE is NIL, then only one character is
inserted.
If REPLACEMENT is a string and PRESERVE is not NIL, then it is rolled
into the available white space, otherwise the entire replacement string
is insterted."
  (with-output-to-string
    (let ((match "*") (replaced t)
          (white-count 0)
          seen-start seen-end current whites)
      (dotimes (i (length input))
        (setf current (aref input i)
              (aref match 0) current)
        (cond
         ((string-match "\\w" match)
          (if seen-end
              (progn
                (if (stringp replacement)
                    (if preserve
                        (dotimes (j white-count)
                          (write-char
                           (aref replacement
                                 (mod j (length replacement )))))
                      (princ replacement))
                  (if preserve
                      (dotimes (j white-count)
                        (write-char replacement))
                    (write-char replacement)))
                (setq seen-end nil))
            (setq seen-start t))
          (setq whites nil white-count 0)
          (write-char current))
         ((member current '(?\ ?\t ?\n ?\r))
          (if seen-start
              (if seen-end
                  (progn
                    (setq whites (cons current whites))
                    (incf white-count))
                (setq seen-end t white-count 1 whites (list ?\ )))
            (write-char current)))
         (t (when (> white-count 0)
              (princ (coerce whites 'string))
              (setq white-count 0 whites nil))
             (write-char current)
            (setq seen-end nil seen-start nil)))))))

(replace-between-words "[.A foobar]    [.B   baz]" ?\/)
"[.A/foobar]    [.B/baz]"

(replace-between-words "[.A foobar]    [.B   baz]" "-=*=-" t)
"[.A-foobar]    [.B-=*baz]"

(replace-between-words "[.A foobar]    [.B   baz]" "-=*=-")
"[.A-=*=-foobar]    [.B-=*=-baz]"

(replace-between-words "[.A foobar]    [.B   baz]" ?\/ t)
"[.A/foobar]    [.B///baz]"

(replace-between-words "[.CP [.TP [.NP" ?\/ t)
"[.CP [.TP [.NP"

And may be eventually even faster :)

share|improve this answer
This does not preserve other whitespace - [.CP [.TP [.NP is converted to [.CP[.TP[.NP. – Tass Oct 10 '12 at 4:19
Whoops, you were right, fixed that. – wvxvw Oct 10 '12 at 10:01
There's a c floating around - I replaced it with white-count. – Tass Oct 10 '12 at 19:26
Nope, it had to be current, autocomple failure :) – wvxvw Oct 10 '12 at 21:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.