net.sf.saxon.regex.RegularExpression Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of saxon-he Show documentation
Show all versions of saxon-he Show documentation
An OSGi bundle for Saxon-HE
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2013 Saxonica Limited.
// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
// If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
// This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0.
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
package net.sf.saxon.regex;
import net.sf.saxon.om.SequenceIterator;
import net.sf.saxon.trans.XPathException;
import java.io.Serializable;
/**
* This interface represents a compiled regular expression. There are different
* implementations for different regex engines
*/
public interface RegularExpression extends Serializable {
/**
* Determine whether the regular expression matches a given string in its entirety
* @param input the string to match
* @return true if the string matches, false otherwise
*/
public boolean matches(CharSequence input);
/**
* Determine whether the regular expression contains a match of a given string
* @param input the string to match
* @return true if the string matches, false otherwise
*/
public boolean containsMatch(CharSequence input);
/**
* Use this regular expression to tokenize an input string.
*
* @param input the string to be tokenized
* @return a SequenceIterator containing the resulting tokens, as objects of type StringValue
*/
public SequenceIterator tokenize(CharSequence input);
/**
* Use this regular expression to analyze an input string, in support of the XSLT
* analyze-string instruction. The resulting RegexIterator provides both the matching and
* non-matching substrings, and allows them to be distinguished. It also provides access
* to matched subgroups.
* @param input the character string to be analyzed using the regular expression
* @return an iterator over matched and unmatched substrings
*/
/*@NotNull*/ public RegexIterator analyze(CharSequence input);
/**
* Replace all substrings of a supplied input string that match the regular expression
* with a replacement string.
* @param input the input string on which replacements are to be performed
* @param replacement the replacement string in the format of the XPath replace() function
* @return the result of performing the replacement
* @throws XPathException if the replacement string is invalid
*/
public CharSequence replace(CharSequence input, CharSequence replacement) throws XPathException;
}