Function: org-roam-replace-string

org-roam-replace-string is a byte-compiled function defined in org-roam-utils.el.

Signature

(org-roam-replace-string OLD NEW S)

Documentation

Replace OLD with NEW in S.

Source Code

;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-utils.el
;;; String utilities
;; TODO Refactor this.
(defun org-roam-replace-string (old new s)
  "Replace OLD with NEW in S."
  (declare (pure t) (side-effect-free t))
  (replace-regexp-in-string (regexp-quote old) new s t t))