comparison lispref/searching.texi @ 27374:0f5edee5242b

*** empty log message ***
author Richard M. Stallman <rms@gnu.org>
date Thu, 20 Jan 2000 18:18:58 +0000
parents a6d5729aef1d
children 72cae205b4f4
comparison
equal deleted inserted replaced
27373:a6d5729aef1d 27374:0f5edee5242b
418 This matches any @sc{ascii} control character. 418 This matches any @sc{ascii} control character.
419 @item [:digit:] 419 @item [:digit:]
420 This matches @samp{0} through @samp{9}. Thus, @samp{[-+[:digit:]]} 420 This matches @samp{0} through @samp{9}. Thus, @samp{[-+[:digit:]]}
421 matches any digit, as well as @samp{+} and @samp{-}. 421 matches any digit, as well as @samp{+} and @samp{-}.
422 @item [:graph:] 422 @item [:graph:]
423 This matches graphic characters---everything except @sc{ascii} control characters, 423 This matches graphic characters---everything except @sc{ascii} control
424 space, and DEL. 424 characters, space, and the delete character.
425 @item [:lower:] 425 @item [:lower:]
426 This matches any lower-case letter, as determined by 426 This matches any lower-case letter, as determined by
427 the current case table (@pxref{Case Tables}). 427 the current case table (@pxref{Case Tables}).
428 @item [:nonascii:] 428 @item [:nonascii:]
429 This matches any non-@sc{ascii} (multibyte) character. 429 This matches any non-@sc{ascii} (multibyte) character.