Function: org-ctags-string-search-and-replace

org-ctags-string-search-and-replace is a byte-compiled function defined in org-ctags.el.gz.

Signature

(org-ctags-string-search-and-replace SEARCH REPLACE STRING)

Documentation

Replace all instances of SEARCH with REPLACE in STRING.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-ctags.el.gz
(defun org-ctags-string-search-and-replace (search replace string)
  "Replace all instances of SEARCH with REPLACE in STRING."
  (replace-regexp-in-string (regexp-quote search) replace string t t))