Function: hyrolo-format-name

hyrolo-format-name is a byte-compiled function defined in hyrolo.el.

Signature

(hyrolo-format-name NAME-STR FIRST LAST)

Documentation

Reverse order of NAME-STR field given my regexp match field FIRST and LAST.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo.el
(defun hyrolo-format-name (name-str first last)
  "Reverse order of NAME-STR field given my regexp match field FIRST and LAST."
  (when (match-beginning last)
    (concat (substring name-str (match-beginning last) (match-end last))
	    ", "
	    (substring name-str (match-beginning first) (match-end first)))))