| Home >> All >> org >> apache >> xmlbeans >> impl >> [ regex Javadoc ] |
org.apache.xmlbeans.impl.regex: Javadoc index of package org.apache.xmlbeans.impl.regex.
Package Samples:
org.apache.xmlbeans.impl.regex
Classes:
RegularExpression: A regular expression matching engine using Non-deterministic Finite Automaton (NFA). This engine does not conform to the POSIX regular expression. How to use A. Standard way RegularExpression re = new RegularExpression( regex ); if (re.matches(text)) { ... } B. Capturing groups RegularExpression re = new RegularExpression( regex ); Match match = new Match(); if (re.matches(text, match)) { ... // You can refer captured texts with methods of the Match class. } Case-insensitive matching RegularExpression re = new RegularExpression( regex , "i"); if (re.matches(text) >= 0) { ...} Options You can specify ...
RangeToken: This class represents a character class such as [a-z] or a period.
Match: An instance of this class has ranges captured in matching.
ParserForXMLSchema: A regular expression parser for the XML Shema.
Token: This class represents a node in parse tree.
RegexParser: A Regular Expression Parser.
BMPattern: Boyer-Moore searcher.
Op
ParseException
REUtil
| Home | Contact Us | Privacy Policy | Terms of Service |