Variable: tramp-host-with-port-regexp

tramp-host-with-port-regexp is a variable defined in tramp.el.gz.

Value

"\\([[:alnum:]_.%-]+\\)#\\([[:digit:]]+\\)"

Documentation

Regexp matching host names with port numbers.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp.el.gz
(defconst tramp-host-with-port-regexp
  (concat "\\(" tramp-host-regexp "\\)"
                tramp-prefix-port-regexp
	  "\\(" tramp-port-regexp "\\)")
  "Regexp matching host names with port numbers.")