comparison etc/NEWS @ 34166:c073ad4159fd

*** empty log message ***
author Gerd Moellmann <gerd@gnu.org>
date Mon, 04 Dec 2000 12:28:37 +0000
parents be313b2af8df
children 106595ce3db9
comparison
equal deleted inserted replaced
34165:3b3a64fbcb05 34166:c073ad4159fd
2582 Execute BODY with VAR bound to successive integers running from 0, 2582 Execute BODY with VAR bound to successive integers running from 0,
2583 inclusive, to COUNT, exclusive. 2583 inclusive, to COUNT, exclusive.
2584 Then return the value of RESULT, or nil if RESULT is omitted. 2584 Then return the value of RESULT, or nil if RESULT is omitted.
2585 2585
2586 +++ 2586 +++
2587 ** Regular expressions now support Posix character classes such 2587 ** Regular expressions now support Posix character classes such as
2588 as [:alpha:], [:space:] and so on. 2588 [:alpha:], [:space:] and so on. These must be used within a character
2589 class--for instance, [-[:digit:].+] matches digits or a period
2590 or a sign.
2589 2591
2590 [:digit:] matches 0 through 9 2592 [:digit:] matches 0 through 9
2591 [:cntrl:] matches ASCII control characters 2593 [:cntrl:] matches ASCII control characters
2592 [:xdigit:] matches 0 through 9, a through f and A through F. 2594 [:xdigit:] matches 0 through 9, a through f and A through F.
2593 [:blank:] matches space and tab only 2595 [:blank:] matches space and tab only