Variable: split-string-default-separators

split-string-default-separators is a variable defined in subr.el.gz.

Value

"[ \f	\n
]+"

Documentation

The default value of separators for split-string.

A regexp matching strings of whitespace. May be locale-dependent
(as yet unimplemented). Should not match non-breaking spaces.

Warning: binding this to a different value and using it as default is likely to have undesired semantics.

Source Code

;; Defined in /usr/src/emacs/lisp/subr.el.gz
;;;; split-string

(defconst split-string-default-separators "[ \f\t\n\r\v]+"
  "The default value of separators for `split-string'.

A regexp matching strings of whitespace.  May be locale-dependent
\(as yet unimplemented).  Should not match non-breaking spaces.

Warning: binding this to a different value and using it as default is
likely to have undesired semantics.")