comparison lispref/strings.texi @ 90365:a802c5505156

Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-43 Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 148-156) - Update from CVS - Merge from gnus--rel--5.10 - Remove nick-abbrevs stuff from rcirc.el - rcirc.el update from Ryan Yeske * gnus--rel--5.10 (patch 57) - Copy/update icons from Gnus trunk
author Miles Bader <miles@gnu.org>
date Mon, 13 Mar 2006 12:19:58 +0000
parents c5406394f567 337a846a85de
children 65ca8fb66a0d
comparison
equal deleted inserted replaced
90364:494bf720eaf0 90365:a802c5505156
291 @example 291 @example
292 (split-string " two words ") 292 (split-string " two words ")
293 @result{} ("two" "words") 293 @result{} ("two" "words")
294 @end example 294 @end example
295 295
296 The result is not @samp{("" "two" "words" "")}, which would rarely be 296 The result is not @code{("" "two" "words" "")}, which would rarely be
297 useful. If you need such a result, use an explicit value for 297 useful. If you need such a result, use an explicit value for
298 @var{separators}: 298 @var{separators}:
299 299
300 @example 300 @example
301 (split-string " two words " 301 (split-string " two words "
353 @end example 353 @end example
354 @end defun 354 @end defun
355 355
356 @defvar split-string-default-separators 356 @defvar split-string-default-separators
357 The default value of @var{separators} for @code{split-string}. Its 357 The default value of @var{separators} for @code{split-string}. Its
358 usual value is @w{@samp{"[ \f\t\n\r\v]+"}}. 358 usual value is @w{@code{"[ \f\t\n\r\v]+"}}.
359 @end defvar 359 @end defvar
360 360
361 @node Modifying Strings 361 @node Modifying Strings
362 @section Modifying Strings 362 @section Modifying Strings
363 363