head	1.3;
access;
symbols;
locks; strict;
comment	@# @;


1.3
date	2004.08.02.16.42.51;	author aso;	state dead;
branches;
next	1.2;

1.2
date	2002.07.28.06.47.02;	author aso;	state Exp;
branches;
next	1.1;

1.1
date	2002.07.27.07.57.12;	author aso;	state Exp;
branches;
next	;


desc
@@


1.3
log
@  
@
text
@
(1)   κ
    \t  
    \n  
    \r
    \f
    \v
    \d	ڸ Ŵ == [0-9]
    \D	ڰ ƴ  Ŵ == [^0-9]
    \s	 ڸ Ŵ == [ \t\n\r\f\v]
    \S	  ڸ Ŵ == [^ \t\n\r\f\v]
    \w	 ڸ Ŵ == [a-zA-Z0-9_]
    \W	  ڸ Ŵ == [^a-zA-Z0-9_]
    \b	matches a word-boundary (NOTE : within a class, matches a backspace)
    \B	matches a non-wordboundary
    \ \t  
    \ \n  

(2) [::]

    alnum	the set of alpha-numeric characters
    alpha	the set of alphabetic characters
    blank	tab and space
    cntrl	the control characters
    digit	decimal digits
    graph	all printable caracters except space
    lower	lovwer case letters
    print	the "printable" characters
    punct	punctuation
    space	whitespace characters
    upper	upper case letters
    xdigit	hexidecimal digits
    
@


1.2
log
@[0-9]{0,4}    ó 
@
text
@@


1.1
log
@*** empty log message ***
@
text
@d2 32
a33 8
\d	ڸ Ŵ == [0-9]
\D	ڰ ƴ  Ŵ == [^0-9]
\s	 ڸ Ŵ == [ \t\n\r\f\v]
\S	  ڸ Ŵ == [^ \t\n\r\f\v]
\w	 ڸ Ŵ == [a-zA-Z0-9_]
\W	  ڸ Ŵ == [^a-zA-Z0-9_]
\b	matches a word-boundary (NOTE : within a class, matches a backspace)
\B	matches a non-wordboundary
@

