亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? re.java

?? jakarta-regexp-1.5 正則表達(dá)式的源代碼
?? JAVA
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(hào):
    static final char OP_RELUCTANTSTAR    = '8';  // none/expr       reluctant '*' (mnemonic for char is unshifted '*')    static final char OP_RELUCTANTPLUS    = '=';  // none/expr       reluctant '+' (mnemonic for char is unshifted '+')    static final char OP_RELUCTANTMAYBE   = '/';  // none/expr       reluctant '?' (mnemonic for char is unshifted '?')    static final char OP_POSIXCLASS       = 'P';  // classid         one of the posix character classes    // Escape codes    static final char E_ALNUM             = 'w';  // Alphanumeric    static final char E_NALNUM            = 'W';  // Non-alphanumeric    static final char E_BOUND             = 'b';  // Word boundary    static final char E_NBOUND            = 'B';  // Non-word boundary    static final char E_SPACE             = 's';  // Whitespace    static final char E_NSPACE            = 'S';  // Non-whitespace    static final char E_DIGIT             = 'd';  // Digit    static final char E_NDIGIT            = 'D';  // Non-digit    // Posix character classes    static final char POSIX_CLASS_ALNUM   = 'w';  // Alphanumerics    static final char POSIX_CLASS_ALPHA   = 'a';  // Alphabetics    static final char POSIX_CLASS_BLANK   = 'b';  // Blanks    static final char POSIX_CLASS_CNTRL   = 'c';  // Control characters    static final char POSIX_CLASS_DIGIT   = 'd';  // Digits    static final char POSIX_CLASS_GRAPH   = 'g';  // Graphic characters    static final char POSIX_CLASS_LOWER   = 'l';  // Lowercase characters    static final char POSIX_CLASS_PRINT   = 'p';  // Printable characters    static final char POSIX_CLASS_PUNCT   = '!';  // Punctuation    static final char POSIX_CLASS_SPACE   = 's';  // Spaces    static final char POSIX_CLASS_UPPER   = 'u';  // Uppercase characters    static final char POSIX_CLASS_XDIGIT  = 'x';  // Hexadecimal digits    static final char POSIX_CLASS_JSTART  = 'j';  // Java identifier start    static final char POSIX_CLASS_JPART   = 'k';  // Java identifier part    // Limits    static final int maxNode  = 65536;            // Maximum number of nodes in a program    static final int MAX_PAREN = 16;              // Number of paren pairs (only 9 can be backrefs)    // Node layout constants    static final int offsetOpcode = 0;            // Opcode offset (first character)    static final int offsetOpdata = 1;            // Opdata offset (second char)    static final int offsetNext   = 2;            // Next index offset (third char)    static final int nodeSize     = 3;            // Node size (in chars)    // State of current program    REProgram program;                            // Compiled regular expression 'program'    transient CharacterIterator search;           // The string being matched against    int matchFlags;                               // Match behaviour flags    int maxParen = MAX_PAREN;    // Parenthesized subexpressions    transient int parenCount;                     // Number of subexpressions matched (num open parens + 1)    transient int start0;                         // Cache of start[0]    transient int end0;                           // Cache of start[0]    transient int start1;                         // Cache of start[1]    transient int end1;                           // Cache of start[1]    transient int start2;                         // Cache of start[2]    transient int end2;                           // Cache of start[2]    transient int[] startn;                       // Lazy-alloced array of sub-expression starts    transient int[] endn;                         // Lazy-alloced array of sub-expression ends    // Backreferences    transient int[] startBackref;                 // Lazy-alloced array of backref starts    transient int[] endBackref;                   // Lazy-alloced array of backref ends    /**     * Constructs a regular expression matcher from a String by compiling it     * using a new instance of RECompiler.  If you will be compiling many     * expressions, you may prefer to use a single RECompiler object instead.     *     * @param pattern The regular expression pattern to compile.     * @exception RESyntaxException Thrown if the regular expression has invalid syntax.     * @see RECompiler     * @see recompile     */    public RE(String pattern) throws RESyntaxException    {        this(pattern, MATCH_NORMAL);    }    /**     * Constructs a regular expression matcher from a String by compiling it     * using a new instance of RECompiler.  If you will be compiling many     * expressions, you may prefer to use a single RECompiler object instead.     *     * @param pattern The regular expression pattern to compile.     * @param matchFlags The matching style     * @exception RESyntaxException Thrown if the regular expression has invalid syntax.     * @see RECompiler     * @see recompile     */    public RE(String pattern, int matchFlags) throws RESyntaxException    {        this(new RECompiler().compile(pattern), matchFlags);    }    /**     * Construct a matcher for a pre-compiled regular expression from program     * (bytecode) data.  Permits special flags to be passed in to modify matching     * behaviour.     *     * @param program Compiled regular expression program (see RECompiler and/or recompile)     * @param matchFlags One or more of the RE match behaviour flags (RE.MATCH_*):     *     * <pre>     *   MATCH_NORMAL              // Normal (case-sensitive) matching     *   MATCH_CASEINDEPENDENT     // Case folded comparisons     *   MATCH_MULTILINE           // Newline matches as BOL/EOL     * </pre>     *     * @see RECompiler     * @see REProgram     * @see recompile     */    public RE(REProgram program, int matchFlags)    {        setProgram(program);        setMatchFlags(matchFlags);    }    /**     * Construct a matcher for a pre-compiled regular expression from program     * (bytecode) data.     *     * @param program Compiled regular expression program     * @see RECompiler     * @see recompile     */    public RE(REProgram program)    {        this(program, MATCH_NORMAL);    }    /**     * Constructs a regular expression matcher with no initial program.     * This is likely to be an uncommon practice, but is still supported.     */    public RE()    {        this((REProgram) null, MATCH_NORMAL);    }    /**     * Converts a 'simplified' regular expression to a full regular expression     *     * @param pattern The pattern to convert     * @return The full regular expression     */    public static String simplePatternToFullRegularExpression(String pattern)    {        StringBuffer buf = new StringBuffer();        for (int i = 0; i < pattern.length(); i++)        {            char c = pattern.charAt(i);            switch (c)            {                case '*':                    buf.append(".*");                    break;                case '.':                case '[':                case ']':                case '\\':                case '+':                case '?':                case '{':                case '}':                case '$':                case '^':                case '|':                case '(':                case ')':                    buf.append('\\');                default:                    buf.append(c);                    break;            }        }        return buf.toString();    }    /**     * Sets match behaviour flags which alter the way RE does matching.     * @param matchFlags One or more of the RE match behaviour flags (RE.MATCH_*):     *     * <pre>     *   MATCH_NORMAL              // Normal (case-sensitive) matching     *   MATCH_CASEINDEPENDENT     // Case folded comparisons     *   MATCH_MULTILINE           // Newline matches as BOL/EOL     * </pre>     */    public void setMatchFlags(int matchFlags)    {        this.matchFlags = matchFlags;    }    /**     * Returns the current match behaviour flags.     * @return Current match behaviour flags (RE.MATCH_*).     *     * <pre>     *   MATCH_NORMAL              // Normal (case-sensitive) matching     *   MATCH_CASEINDEPENDENT     // Case folded comparisons     *   MATCH_MULTILINE           // Newline matches as BOL/EOL     * </pre>     *     * @see #setMatchFlags     */    public int getMatchFlags()    {        return matchFlags;    }    /**     * Sets the current regular expression program used by this matcher object.     *     * @param program Regular expression program compiled by RECompiler.     * @see RECompiler     * @see REProgram     * @see recompile     */    public void setProgram(REProgram program)    {        this.program = program;        if (program != null && program.maxParens != -1) {            this.maxParen = program.maxParens;        } else {            this.maxParen = MAX_PAREN;        }    }    /**     * Returns the current regular expression program in use by this matcher object.     *     * @return Regular expression program     * @see #setProgram     */    public REProgram getProgram()    {        return program;    }    /**     * Returns the number of parenthesized subexpressions available after a successful match.     *     * @return Number of available parenthesized subexpressions     */    public int getParenCount()    {        return parenCount;    }    /**     * Gets the contents of a parenthesized subexpression after a successful match.     *     * @param which Nesting level of subexpression     * @return String     */    public String getParen(int which)    {        int start;        if (which < parenCount && (start = getParenStart(which)) >= 0)        {            return search.substring(start, getParenEnd(which));        }        return null;    }    /**     * Returns the start index of a given paren level.     *     * @param which Nesting level of subexpression     * @return String index     */    public final int getParenStart(int which)    {        if (which < parenCount)        {            switch (which)            {                case 0:                    return start0;                case 1:                    return start1;                case 2:                    return start2;                default:                    if (startn == null)                    {                        allocParens();                    }                    return startn[which];            }        }        return -1;    }    /**     * Returns the end index of a given paren level.     *     * @param which Nesting level of subexpression     * @return String index     */    public final int getParenEnd(int which)    {        if (which < parenCount)        {            switch (which)            {                case 0:                    return end0;                case 1:                    return end1;                case 2:                    return end2;                default:                    if (endn == null)                    {                        allocParens();                    }                    return endn[which];            }        }        return -1;    }    /**     * Returns the length of a given paren level.     *     * @param which Nesting level of subexpression     * @return Number of characters in the parenthesized subexpression     */    public final int getParenLength(int which)    {        if (which < parenCount)        {            return getParenEnd(which) - getParenStart(which);        }        return -1;    }    /**     * Sets the start of a paren level     *     * @param which Which paren level     * @param i Index in input array

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产欧美久久久精品影院| 亚洲欧美偷拍卡通变态| 91蜜桃婷婷狠狠久久综合9色| 丝袜美腿亚洲一区二区图片| 国产欧美综合色| 日韩三级电影网址| 欧美性做爰猛烈叫床潮| 成人av电影在线观看| 精品在线免费视频| 亚洲一区在线播放| 亚洲日本一区二区三区| 久久天天做天天爱综合色| 欧美一区二区三级| ●精品国产综合乱码久久久久| 日韩精品一区二区在线观看| 欧美中文字幕亚洲一区二区va在线 | 亚洲电影一级片| 中文字幕在线一区二区三区| 欧美va亚洲va国产综合| 欧美丰满嫩嫩电影| 欧洲色大大久久| 色婷婷av一区二区| hitomi一区二区三区精品| 国产一区二区三区久久悠悠色av| 欧美aaaaaa午夜精品| 午夜精品久久久久久久久| 一区二区三区四区视频精品免费 | 在线一区二区三区四区五区| 成人精品在线视频观看| 国产精品1024久久| 黄页视频在线91| 国内不卡的二区三区中文字幕| 日本91福利区| 久久精品免费观看| 麻豆成人久久精品二区三区红 | 日本韩国欧美一区| 一本大道久久a久久综合婷婷| 成人av网站在线观看免费| 成人av集中营| 色婷婷综合在线| 在线免费一区三区| 欧美私模裸体表演在线观看| 欧美在线观看视频一区二区三区 | 日韩亚洲欧美中文三级| 777午夜精品视频在线播放| 欧美精品久久一区二区三区| 制服丝袜激情欧洲亚洲| 日韩一区二区三区在线视频| 日韩精品一区二区在线观看| 欧美r级电影在线观看| 久久亚区不卡日本| 欧美国产成人精品| 亚洲私人黄色宅男| 亚洲一区二区高清| 美女脱光内衣内裤视频久久网站 | 免费成人av在线播放| 久久99深爱久久99精品| 国产91精品欧美| 色播五月激情综合网| 在线电影欧美成精品| 日韩视频一区二区三区| 国产视频一区二区在线| 亚洲另类在线视频| 日本欧美大码aⅴ在线播放| 精品中文字幕一区二区小辣椒| 成人精品免费视频| 欧美综合色免费| 欧美不卡视频一区| 国产精品视频观看| 亚洲国产日韩一区二区| 韩国v欧美v日本v亚洲v| 99久久亚洲一区二区三区青草| 在线观看日韩av先锋影音电影院| 7777精品伊人久久久大香线蕉完整版| 精品久久久久久久久久久久久久久 | xf在线a精品一区二区视频网站| 国产欧美日韩在线视频| 一区二区成人在线| 国产资源精品在线观看| 色香蕉成人二区免费| 欧美电视剧在线看免费| 中文字幕在线一区免费| 美国三级日本三级久久99| 91视频在线观看| 精品久久一区二区| 亚洲国产精品嫩草影院| 国产成人综合网| 欧美精品在欧美一区二区少妇| 久久久久久久综合| 婷婷综合久久一区二区三区| 成人性生交大片免费看中文| 欧美精品日韩一本| 中文字幕在线视频一区| 黄网站免费久久| 欧美日韩精品欧美日韩精品一| 欧美国产精品久久| 麻豆精品一区二区三区| 欧美色窝79yyyycom| 国产精品人妖ts系列视频| 麻豆久久一区二区| 欧美日韩电影在线| 综合久久一区二区三区| 国产精品一二三四五| 欧美一区中文字幕| 亚洲一区在线视频| 99精品欧美一区| 国产亚洲欧美激情| 美日韩一级片在线观看| 欧美伦理电影网| 亚洲一区二区三区视频在线播放| 岛国精品在线播放| 26uuu另类欧美亚洲曰本| 秋霞午夜鲁丝一区二区老狼| 91官网在线观看| 日韩一区欧美小说| 懂色av一区二区三区蜜臀| 欧美www视频| 日韩电影一区二区三区四区| 欧美在线免费视屏| 一区二区在线免费| av在线不卡电影| 国产精品视频线看| 国产91丝袜在线播放| 欧美激情中文字幕一区二区| 国产高清不卡一区| 久久久影院官网| 国产精品自拍一区| 久久久蜜桃精品| 成人深夜在线观看| 中文字幕高清一区| 波多野结衣在线一区| 中国色在线观看另类| 成人avav影音| 国产精品久久福利| av成人免费在线| 亚洲欧洲成人精品av97| 99re亚洲国产精品| 亚洲精品日日夜夜| 欧美亚洲国产bt| 爽好多水快深点欧美视频| 3atv在线一区二区三区| 免费精品视频在线| 2023国产精品| 国产精品自拍一区| 中文字幕一区免费在线观看| 色8久久人人97超碰香蕉987| 亚洲最色的网站| 7777女厕盗摄久久久| 精品一区二区三区香蕉蜜桃 | 欧美精品日韩一区| 麻豆精品一区二区三区| 国产三级三级三级精品8ⅰ区| 国产黄色91视频| 中文字幕中文乱码欧美一区二区| 在线观看亚洲一区| 蜜臀久久99精品久久久画质超高清| 精品盗摄一区二区三区| 成人黄色在线看| 亚洲综合丁香婷婷六月香| 91精品国产综合久久精品| 国模少妇一区二区三区| 自拍偷拍欧美激情| 欧美酷刑日本凌虐凌虐| 国产一区二区美女诱惑| 亚洲精品中文在线影院| 欧美一区二区三区人| 国产**成人网毛片九色 | 国产一区在线观看视频| **网站欧美大片在线观看| 欧美性色aⅴ视频一区日韩精品| 日韩va欧美va亚洲va久久| 欧美精品一区二区三区视频| 99久久精品国产一区二区三区| 亚洲成人av免费| 久久久国产一区二区三区四区小说| 99在线精品观看| 免费的国产精品| 中文字幕在线不卡视频| 欧美一级黄色片| 91亚洲国产成人精品一区二三| 图片区日韩欧美亚洲| 欧美韩国一区二区| 在线不卡欧美精品一区二区三区| 国产盗摄一区二区三区| 亚洲影院理伦片| 中日韩免费视频中文字幕| 日韩一区二区三区视频| 91香蕉视频污在线| 国产一区美女在线| 亚洲一级二级在线| 国产日韩欧美激情| 91精品婷婷国产综合久久性色| 成人性生交大片| 青草av.久久免费一区| 亚洲伦在线观看| 久久看人人爽人人| 欧美一区二区视频在线观看2022| 99久久精品99国产精品| 韩国精品一区二区| 日韩一区精品字幕|