Pattern.java (17465:cfdcaedd6da2) Pattern.java (17541:503dd889e2c3)
1/*
2 * Copyright (c) 1999, 2017, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided

--- 653 unchanged lines hidden (view full) ---

662 * <td>A lowercase character:{@code \p{IsLowercase}}</td></tr>
663 * <tr><td>{@code \p{Upper}}</td>
664 * <td>An uppercase character:{@code \p{IsUppercase}}</td></tr>
665 * <tr><td>{@code \p{ASCII}}</td>
666 * <td>All ASCII:{@code [\x00-\x7F]}</td></tr>
667 * <tr><td>{@code \p{Alpha}}</td>
668 * <td>An alphabetic character:{@code \p{IsAlphabetic}}</td></tr>
669 * <tr><td>{@code \p{Digit}}</td>
1/*
2 * Copyright (c) 1999, 2017, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided

--- 653 unchanged lines hidden (view full) ---

662 * <td>A lowercase character:{@code \p{IsLowercase}}</td></tr>
663 * <tr><td>{@code \p{Upper}}</td>
664 * <td>An uppercase character:{@code \p{IsUppercase}}</td></tr>
665 * <tr><td>{@code \p{ASCII}}</td>
666 * <td>All ASCII:{@code [\x00-\x7F]}</td></tr>
667 * <tr><td>{@code \p{Alpha}}</td>
668 * <td>An alphabetic character:{@code \p{IsAlphabetic}}</td></tr>
669 * <tr><td>{@code \p{Digit}}</td>
670 * A decimal digit character:{@code p{IsDigit}}
670 * <td>A decimal digit character:{@code \p{IsDigit}}</td></tr>
671 * <tr><td>{@code \p{Alnum}}</td>
672 * <td>An alphanumeric character:{@code [\p{IsAlphabetic}\p{IsDigit}]}</td></tr>
673 * <tr><td>{@code \p{Punct}}</td>
671 * <tr><td>{@code \p{Alnum}}</td>
672 * <td>An alphanumeric character:{@code [\p{IsAlphabetic}\p{IsDigit}]}</td></tr>
673 * <tr><td>{@code \p{Punct}}</td>
674 * A punctuation character:{@code p{IsPunctuation}}
674 * <td>A punctuation character:{@code \p{IsPunctuation}}</td></tr>
675 * <tr><td>{@code \p{Graph}}</td>
676 * <td>A visible character: {@code [^\p{IsWhite_Space}\p{gc=Cc}\p{gc=Cs}\p{gc=Cn}]}</td></tr>
677 * <tr><td>{@code \p{Print}}</td>
678 * <td>A printable character: {@code [\p{Graph}\p{Blank}&&[^\p{Cntrl}]]}</td></tr>
679 * <tr><td>{@code \p{Blank}}</td>
680 * <td>A space or a tab: {@code [\p{IsWhite_Space}&&[^\p{gc=Zl}\p{gc=Zp}\x0a\x0b\x0c\x0d\x85]]}</td></tr>
681 * <tr><td>{@code \p{Cntrl}}</td>
682 * <td>A control character: {@code \p{gc=Cc}}</td></tr>

--- 5247 unchanged lines hidden ---
675 * <tr><td>{@code \p{Graph}}</td>
676 * <td>A visible character: {@code [^\p{IsWhite_Space}\p{gc=Cc}\p{gc=Cs}\p{gc=Cn}]}</td></tr>
677 * <tr><td>{@code \p{Print}}</td>
678 * <td>A printable character: {@code [\p{Graph}\p{Blank}&&[^\p{Cntrl}]]}</td></tr>
679 * <tr><td>{@code \p{Blank}}</td>
680 * <td>A space or a tab: {@code [\p{IsWhite_Space}&&[^\p{gc=Zl}\p{gc=Zp}\x0a\x0b\x0c\x0d\x85]]}</td></tr>
681 * <tr><td>{@code \p{Cntrl}}</td>
682 * <td>A control character: {@code \p{gc=Cc}}</td></tr>

--- 5247 unchanged lines hidden ---