ICU 64.2  64.2
Public Member Functions | Static Public Member Functions | Friends
icu::RegexMatcher Class Referencefinal

class RegexMatcher bundles together a regular expression pattern and input text to which the expression can be applied. More...

#include <regex.h>

Inheritance diagram for icu::RegexMatcher:
icu::UObject icu::UMemory

Public Member Functions

 RegexMatcher (const UnicodeString &regexp, uint32_t flags, UErrorCode &status)
 Construct a RegexMatcher for a regular expression. More...
 
 RegexMatcher (UText *regexp, uint32_t flags, UErrorCode &status)
 Construct a RegexMatcher for a regular expression. More...
 
 RegexMatcher (const UnicodeString &regexp, const UnicodeString &input, uint32_t flags, UErrorCode &status)
 Construct a RegexMatcher for a regular expression. More...
 
 RegexMatcher (UText *regexp, UText *input, uint32_t flags, UErrorCode &status)
 Construct a RegexMatcher for a regular expression. More...
 
virtual ~RegexMatcher ()
 Destructor. More...
 
virtual UBool matches (UErrorCode &status)
 Attempts to match the entire input region against the pattern. More...
 
virtual UBool matches (int64_t startIndex, UErrorCode &status)
 Resets the matcher, then attempts to match the input beginning at the specified startIndex, and extending to the end of the input. More...
 
virtual UBool lookingAt (UErrorCode &status)
 Attempts to match the input string, starting from the beginning of the region, against the pattern. More...
 
virtual UBool lookingAt (int64_t startIndex, UErrorCode &status)
 Attempts to match the input string, starting from the specified index, against the pattern. More...
 
virtual UBool find ()
 Find the next pattern match in the input string. More...
 
virtual UBool find (UErrorCode &status)
 Find the next pattern match in the input string. More...
 
virtual UBool find (int64_t start, UErrorCode &status)
 Resets this RegexMatcher and then attempts to find the next substring of the input string that matches the pattern, starting at the specified index. More...
 
virtual UnicodeString group (UErrorCode &status) const
 Returns a string containing the text matched by the previous match. More...
 
virtual UnicodeString group (int32_t groupNum, UErrorCode &status) const
 Returns a string containing the text captured by the given group during the previous match operation. More...
 
virtual int32_t groupCount () const
 Returns the number of capturing groups in this matcher's pattern. More...
 
virtual UTextgroup (UText *dest, int64_t &group_len, UErrorCode &status) const
 Returns a shallow clone of the entire live input string with the UText current native index set to the beginning of the requested group. More...
 
virtual UTextgroup (int32_t groupNum, UText *dest, int64_t &group_len, UErrorCode &status) const
 Returns a shallow clone of the entire live input string with the UText current native index set to the beginning of the requested group. More...
 
virtual int32_t start (UErrorCode &status) const
 Returns the index in the input string of the start of the text matched during the previous match operation. More...
 
virtual int64_t start64 (UErrorCode &status) const
 Returns the index in the input string of the start of the text matched during the previous match operation. More...
 
virtual int32_t start (int32_t group, UErrorCode &status) const
 Returns the index in the input string of the start of the text matched by the specified capture group during the previous match operation. More...
 
virtual int64_t start64 (int32_t group, UErrorCode &status) const
 Returns the index in the input string of the start of the text matched by the specified capture group during the previous match operation. More...
 
virtual int32_t end (UErrorCode &status) const
 Returns the index in the input string of the first character following the text matched during the previous match operation. More...
 
virtual int64_t end64 (UErrorCode &status) const
 Returns the index in the input string of the first character following the text matched during the previous match operation. More...
 
virtual int32_t end (int32_t group, UErrorCode &status) const
 Returns the index in the input string of the character following the text matched by the specified capture group during the previous match operation. More...
 
virtual int64_t end64 (int32_t group, UErrorCode &status) const
 Returns the index in the input string of the character following the text matched by the specified capture group during the previous match operation. More...
 
virtual RegexMatcherreset ()
 Resets this matcher. More...
 
virtual RegexMatcherreset (int64_t index, UErrorCode &status)
 Resets this matcher, and set the current input position. More...
 
virtual RegexMatcherreset (const UnicodeString &input)
 Resets this matcher with a new input string. More...
 
virtual RegexMatcherreset (UText *input)
 Resets this matcher with a new input string. More...
 
virtual RegexMatcherrefreshInputText (UText *input, UErrorCode &status)
 Set the subject text string upon which the regular expression is looking for matches without changing any other aspect of the matching state. More...
 
virtual const UnicodeStringinput () const
 Returns the input string being matched. More...
 
virtual UTextinputText () const
 Returns the input string being matched. More...
 
virtual UTextgetInput (UText *dest, UErrorCode &status) const
 Returns the input string being matched, either by copying it into the provided UText parameter or by returning a shallow clone of the live input. More...
 
virtual RegexMatcherregion (int64_t start, int64_t limit, UErrorCode &status)
 Sets the limits of this matcher's region. More...
 
virtual RegexMatcherregion (int64_t regionStart, int64_t regionLimit, int64_t startIndex, UErrorCode &status)
 Identical to region(start, limit, status) but also allows a start position without resetting the region state. More...
 
virtual int32_t regionStart () const
 Reports the start index of this matcher's region. More...
 
virtual int64_t regionStart64 () const
 Reports the start index of this matcher's region. More...
 
virtual int32_t regionEnd () const
 Reports the end (limit) index (exclusive) of this matcher's region. More...
 
virtual int64_t regionEnd64 () const
 Reports the end (limit) index (exclusive) of this matcher's region. More...
 
virtual UBool hasTransparentBounds () const
 Queries the transparency of region bounds for this matcher. More...
 
virtual RegexMatcheruseTransparentBounds (UBool b)
 Sets the transparency of region bounds for this matcher. More...
 
virtual UBool hasAnchoringBounds () const
 Return true if this matcher is using anchoring bounds. More...
 
virtual RegexMatcheruseAnchoringBounds (UBool b)
 Set whether this matcher is using Anchoring Bounds for its region. More...
 
virtual UBool hitEnd () const
 Return TRUE if the most recent matching operation attempted to access additional input beyond the available input text. More...
 
virtual UBool requireEnd () const
 Return TRUE the most recent match succeeded and additional input could cause it to fail. More...
 
virtual const RegexPatternpattern () const
 Returns the pattern that is interpreted by this matcher. More...
 
virtual UnicodeString replaceAll (const UnicodeString &replacement, UErrorCode &status)
 Replaces every substring of the input that matches the pattern with the given replacement string. More...
 
virtual UTextreplaceAll (UText *replacement, UText *dest, UErrorCode &status)
 Replaces every substring of the input that matches the pattern with the given replacement string. More...
 
virtual UnicodeString replaceFirst (const UnicodeString &replacement, UErrorCode &status)
 Replaces the first substring of the input that matches the pattern with the replacement string. More...
 
virtual UTextreplaceFirst (UText *replacement, UText *dest, UErrorCode &status)
 Replaces the first substring of the input that matches the pattern with the replacement string. More...
 
virtual RegexMatcherappendReplacement (UnicodeString &dest, const UnicodeString &replacement, UErrorCode &status)
 Implements a replace operation intended to be used as part of an incremental find-and-replace. More...
 
virtual RegexMatcherappendReplacement (UText *dest, UText *replacement, UErrorCode &status)
 Implements a replace operation intended to be used as part of an incremental find-and-replace. More...
 
virtual UnicodeStringappendTail (UnicodeString &dest)
 As the final step in a find-and-replace operation, append the remainder of the input string, starting at the position following the last appendReplacement(), to the destination string. More...
 
virtual UTextappendTail (UText *dest, UErrorCode &status)
 As the final step in a find-and-replace operation, append the remainder of the input string, starting at the position following the last appendReplacement(), to the destination string. More...
 
virtual int32_t split (const UnicodeString &input, UnicodeString dest[], int32_t destCapacity, UErrorCode &status)
 Split a string into fields. More...
 
virtual int32_t split (UText *input, UText *dest[], int32_t destCapacity, UErrorCode &status)
 Split a string into fields. More...
 
virtual void setTimeLimit (int32_t limit, UErrorCode &status)
 Set a processing time limit for match operations with this Matcher. More...
 
virtual int32_t getTimeLimit () const
 Get the time limit, if any, for match operations made with this Matcher. More...
 
virtual void setStackLimit (int32_t limit, UErrorCode &status)
 Set the amount of heap storage available for use by the match backtracking stack. More...
 
virtual int32_t getStackLimit () const
 Get the size of the heap storage available for use by the back tracking stack. More...
 
virtual void setMatchCallback (URegexMatchCallback *callback, const void *context, UErrorCode &status)
 Set a callback function for use with this Matcher. More...
 
virtual void getMatchCallback (URegexMatchCallback *&callback, const void *&context, UErrorCode &status)
 Get the callback function for this URegularExpression. More...
 
virtual void setFindProgressCallback (URegexFindProgressCallback *callback, const void *context, UErrorCode &status)
 Set a progress callback function for use with find operations on this Matcher. More...
 
virtual void getFindProgressCallback (URegexFindProgressCallback *&callback, const void *&context, UErrorCode &status)
 Get the find progress callback function for this URegularExpression. More...
 
void setTrace (UBool state)
 setTrace Debug function, enable/disable tracing of the matching engine. More...
 
virtual UClassID getDynamicClassID () const
 ICU "poor man's RTTI", returns a UClassID for the actual class. More...
 
void resetPreserveRegion ()
 
- Public Member Functions inherited from icu::UObject
virtual ~UObject ()
 Destructor. More...
 

Static Public Member Functions

static UClassID getStaticClassID ()
 ICU "poor man's RTTI", returns a UClassID for this class. More...
 

Friends

class RegexPattern
 
class RegexCImpl
 

Detailed Description

class RegexMatcher bundles together a regular expression pattern and input text to which the expression can be applied.

It includes methods for testing for matches, and for find and replace operations.

Class RegexMatcher is not intended to be subclassed.

Stable:
ICU 2.4

Definition at line 662 of file regex.h.

Constructor & Destructor Documentation

◆ RegexMatcher() [1/4]

icu::RegexMatcher::RegexMatcher ( const UnicodeString regexp,
uint32_t  flags,
UErrorCode status 
)

Construct a RegexMatcher for a regular expression.

This is a convenience method that avoids the need to explicitly create a RegexPattern object. Note that if several RegexMatchers need to be created for the same expression, it will be more efficient to separately create and cache a RegexPattern object, and use its matcher() method to create the RegexMatcher objects.

Parameters
regexpThe Regular Expression to be compiled.
flagsURegexpFlag options, such as UREGEX_CASE_INSENSITIVE.
statusAny errors are reported by setting this UErrorCode variable.
Stable:
ICU 2.6

◆ RegexMatcher() [2/4]

icu::RegexMatcher::RegexMatcher ( UText regexp,
uint32_t  flags,
UErrorCode status 
)

Construct a RegexMatcher for a regular expression.

This is a convenience method that avoids the need to explicitly create a RegexPattern object. Note that if several RegexMatchers need to be created for the same expression, it will be more efficient to separately create and cache a RegexPattern object, and use its matcher() method to create the RegexMatcher objects.

Parameters
regexpThe regular expression to be compiled.
flagsURegexpFlag options, such as UREGEX_CASE_INSENSITIVE.
statusAny errors are reported by setting this UErrorCode variable.
Stable:
ICU 4.6

◆ RegexMatcher() [3/4]

icu::RegexMatcher::RegexMatcher ( const UnicodeString regexp,
const UnicodeString input,
uint32_t  flags,
UErrorCode status 
)

Construct a RegexMatcher for a regular expression.

This is a convenience method that avoids the need to explicitly create a RegexPattern object. Note that if several RegexMatchers need to be created for the same expression, it will be more efficient to separately create and cache a RegexPattern object, and use its matcher() method to create the RegexMatcher objects.

The matcher will retain a reference to the supplied input string, and all regexp pattern matching operations happen directly on the original string. It is critical that the string not be altered or deleted before use by the regular expression operations is complete.

Parameters
regexpThe Regular Expression to be compiled.
inputThe string to match. The matcher retains a reference to the caller's string; mo copy is made.
flagsURegexpFlag options, such as UREGEX_CASE_INSENSITIVE.
statusAny errors are reported by setting this UErrorCode variable.
Stable:
ICU 2.6

◆ RegexMatcher() [4/4]

icu::RegexMatcher::RegexMatcher ( UText regexp,
UText input,
uint32_t  flags,
UErrorCode status 
)

Construct a RegexMatcher for a regular expression.

This is a convenience method that avoids the need to explicitly create a RegexPattern object. Note that if several RegexMatchers need to be created for the same expression, it will be more efficient to separately create and cache a RegexPattern object, and use its matcher() method to create the RegexMatcher objects.

The matcher will make a shallow clone of the supplied input text, and all regexp pattern matching operations happen on this clone. While read-only operations on the supplied text are permitted, it is critical that the underlying string not be altered or deleted before use by the regular expression operations is complete.

Parameters
regexpThe Regular Expression to be compiled.
inputThe string to match. The matcher retains a shallow clone of the text.
flagsURegexpFlag options, such as UREGEX_CASE_INSENSITIVE.
statusAny errors are reported by setting this UErrorCode variable.
Stable:
ICU 4.6

◆ ~RegexMatcher()

virtual icu::RegexMatcher::~RegexMatcher ( )
virtual

Destructor.

Stable:
ICU 2.4

Member Function Documentation

◆ appendReplacement() [1/2]

virtual RegexMatcher& icu::RegexMatcher::appendReplacement ( UnicodeString dest,
const UnicodeString replacement,
UErrorCode status 
)
virtual

Implements a replace operation intended to be used as part of an incremental find-and-replace.

The input string, starting from the end of the previous replacement and ending at the start of the current match, is appended to the destination string. Then the replacement string is appended to the output string, including handling any substitutions of captured text.

For simple, prepackaged, non-incremental find-and-replace operations, see replaceFirst() or replaceAll().

Parameters
destA UnicodeString to which the results of the find-and-replace are appended.
replacementA UnicodeString that provides the text to be substituted for the input text that matched the regexp pattern. The replacement text may contain references to captured text from the input.
statusA reference to a UErrorCode to receive any errors. Possible errors are U_REGEX_INVALID_STATE if no match has been attempted or the last match failed, and U_INDEX_OUTOFBOUNDS_ERROR if the replacement text specifies a capture group that does not exist in the pattern.
Returns
this RegexMatcher
Stable:
ICU 2.4

◆ appendReplacement() [2/2]

virtual RegexMatcher& icu::RegexMatcher::appendReplacement ( UText dest,
UText replacement,
UErrorCode status 
)
virtual

Implements a replace operation intended to be used as part of an incremental find-and-replace.

The input string, starting from the end of the previous replacement and ending at the start of the current match, is appended to the destination string. Then the replacement string is appended to the output string, including handling any substitutions of captured text.

For simple, prepackaged, non-incremental find-and-replace operations, see replaceFirst() or replaceAll().

Parameters
destA mutable UText to which the results of the find-and-replace are appended. Must not be NULL.
replacementA UText that provides the text to be substituted for the input text that matched the regexp pattern. The replacement text may contain references to captured text from the input.
statusA reference to a UErrorCode to receive any errors. Possible errors are U_REGEX_INVALID_STATE if no match has been attempted or the last match failed, and U_INDEX_OUTOFBOUNDS_ERROR if the replacement text specifies a capture group that does not exist in the pattern.
Returns
this RegexMatcher
Stable:
ICU 4.6

◆ appendTail() [1/2]

virtual UnicodeString& icu::RegexMatcher::appendTail ( UnicodeString dest)
virtual

As the final step in a find-and-replace operation, append the remainder of the input string, starting at the position following the last appendReplacement(), to the destination string.

appendTail() is intended to be invoked after one or more invocations of the RegexMatcher::appendReplacement().

Parameters
destA UnicodeString to which the results of the find-and-replace are appended.
Returns
the destination string.
Stable:
ICU 2.4

◆ appendTail() [2/2]

virtual UText* icu::RegexMatcher::appendTail ( UText dest,
UErrorCode status 
)
virtual

As the final step in a find-and-replace operation, append the remainder of the input string, starting at the position following the last appendReplacement(), to the destination string.

appendTail() is intended to be invoked after one or more invocations of the RegexMatcher::appendReplacement().

Parameters
destA mutable UText to which the results of the find-and-replace are appended. Must not be NULL.
statuserror cod
Returns
the destination string.
Stable:
ICU 4.6

◆ end() [1/2]

virtual int32_t icu::RegexMatcher::end ( UErrorCode status) const
virtual

Returns the index in the input string of the first character following the text matched during the previous match operation.

Parameters
statusA reference to a UErrorCode to receive any errors. Possible errors are U_REGEX_INVALID_STATE if no match has been attempted or the last match failed.
Returns
the index of the last character matched, plus one. The index value returned is a native index, corresponding to code units for the underlying encoding type, for example, a byte index for UTF-8.
Stable:
ICU 2.4

◆ end() [2/2]

virtual int32_t icu::RegexMatcher::end ( int32_t  group,
UErrorCode status 
) const
virtual

Returns the index in the input string of the character following the text matched by the specified capture group during the previous match operation.

Parameters
groupthe capture group number
statusA reference to a UErrorCode to receive any errors. Possible errors are U_REGEX_INVALID_STATE if no match has been attempted or the last match failed and U_INDEX_OUTOFBOUNDS_ERROR for a bad capture group number
Returns
the index of the first character following the text captured by the specified group during the previous match operation. Return -1 if the capture group exists in the pattern but was not part of the match. The index value returned is a native index, corresponding to code units for the underlying encoding type, for example, a byte index for UTF8.
Stable:
ICU 2.4

◆ end64() [1/2]

virtual int64_t icu::RegexMatcher::end64 ( UErrorCode status) const
virtual

Returns the index in the input string of the first character following the text matched during the previous match operation.

Parameters
statusA reference to a UErrorCode to receive any errors. Possible errors are U_REGEX_INVALID_STATE if no match has been attempted or the last match failed.
Returns
the index of the last character matched, plus one. The index value returned is a native index, corresponding to code units for the underlying encoding type, for example, a byte index for UTF-8.
Stable:
ICU 4.6

◆ end64() [2/2]

virtual int64_t icu::RegexMatcher::end64 ( int32_t  group,
UErrorCode status 
) const
virtual

Returns the index in the input string of the character following the text matched by the specified capture group during the previous match operation.

Parameters
groupthe capture group number
statusA reference to a UErrorCode to receive any errors. Possible errors are U_REGEX_INVALID_STATE if no match has been attempted or the last match failed and U_INDEX_OUTOFBOUNDS_ERROR for a bad capture group number
Returns
the index of the first character following the text captured by the specified group during the previous match operation. Return -1 if the capture group exists in the pattern but was not part of the match. The index value returned is a native index, corresponding to code units for the underlying encoding type, for example, a byte index for UTF8.
Stable:
ICU 4.6

◆ find() [1/3]

virtual UBool icu::RegexMatcher::find ( )
virtual

Find the next pattern match in the input string.

The find begins searching the input at the location following the end of the previous match, or at the start of the string if there is no previous match. If a match is found, start(), end() and group() will provide more information regarding the match. Note that if the input string is changed by the application, use find(startPos, status) instead of find(), because the saved starting position may not be valid with the altered input string.

Returns
TRUE if a match is found.
Stable:
ICU 2.4

◆ find() [2/3]

virtual UBool icu::RegexMatcher::find ( UErrorCode status)
virtual

Find the next pattern match in the input string.

The find begins searching the input at the location following the end of the previous match, or at the start of the string if there is no previous match. If a match is found, start(), end() and group() will provide more information regarding the match.

Note that if the input string is changed by the application, use find(startPos, status) instead of find(), because the saved starting position may not be valid with the altered input string.

Parameters
statusA reference to a UErrorCode to receive any errors.
Returns
TRUE if a match is found.
Stable:
ICU 55

◆ find() [3/3]

virtual UBool icu::RegexMatcher::find ( int64_t  start,
UErrorCode status 
)
virtual

Resets this RegexMatcher and then attempts to find the next substring of the input string that matches the pattern, starting at the specified index.

Parameters
startThe (native) index in the input string to begin the search.
statusA reference to a UErrorCode to receive any errors.
Returns
TRUE if a match is found.
Stable:
ICU 2.4

◆ getDynamicClassID()

virtual UClassID icu::RegexMatcher::getDynamicClassID ( ) const
virtual

ICU "poor man's RTTI", returns a UClassID for the actual class.

Stable:
ICU 2.2

Reimplemented from icu::UObject.

◆ getFindProgressCallback()

virtual void icu::RegexMatcher::getFindProgressCallback ( URegexFindProgressCallback *&  callback,
const void *&  context,
UErrorCode status 
)
virtual

Get the find progress callback function for this URegularExpression.

Parameters
callbackOut parameter, receives a pointer to the user-supplied callback function.
contextOut parameter, receives the user context pointer that was set when uregex_setFindProgressCallback() was called.
statusA reference to a UErrorCode to receive any errors.
Stable:
ICU 4.6

◆ getInput()

virtual UText* icu::RegexMatcher::getInput ( UText dest,
UErrorCode status 
) const
virtual

Returns the input string being matched, either by copying it into the provided UText parameter or by returning a shallow clone of the live input.

Note that copying the entire input may cause significant performance and memory issues.

Parameters
destThe UText into which the input should be copied, or NULL to create a new UText
statuserror code
Returns
dest if non-NULL, a shallow copy of the input text otherwise
Stable:
ICU 4.6

◆ getMatchCallback()

virtual void icu::RegexMatcher::getMatchCallback ( URegexMatchCallback *&  callback,
const void *&  context,
UErrorCode status 
)
virtual

Get the callback function for this URegularExpression.

Parameters
callbackOut parameter, receives a pointer to the user-supplied callback function.
contextOut parameter, receives the user context pointer that was set when uregex_setMatchCallback() was called.
statusA reference to a UErrorCode to receive any errors.
Stable:
ICU 4.0

◆ getStackLimit()

virtual int32_t icu::RegexMatcher::getStackLimit ( ) const
virtual

Get the size of the heap storage available for use by the back tracking stack.

Returns
the maximum backtracking stack size, in bytes, or zero if the stack size is unlimited.
Stable:
ICU 4.0

◆ getStaticClassID()

static UClassID icu::RegexMatcher::getStaticClassID ( )
static

ICU "poor man's RTTI", returns a UClassID for this class.

Stable:
ICU 2.2

◆ getTimeLimit()

virtual int32_t icu::RegexMatcher::getTimeLimit ( ) const
virtual

Get the time limit, if any, for match operations made with this Matcher.

Returns
the maximum allowed time for a match, in units of processing steps.
Stable:
ICU 4.0

◆ group() [1/4]

virtual UnicodeString icu::RegexMatcher::group ( UErrorCode status) const
virtual

Returns a string containing the text matched by the previous match.

If the pattern can match an empty string, an empty string may be returned.

Parameters
statusA reference to a UErrorCode to receive any errors. Possible errors are U_REGEX_INVALID_STATE if no match has been attempted or the last match failed.
Returns
a string containing the matched input text.
Stable:
ICU 2.4

◆ group() [2/4]

virtual UnicodeString icu::RegexMatcher::group ( int32_t  groupNum,
UErrorCode status 
) const
virtual

Returns a string containing the text captured by the given group during the previous match operation.

Group(0) is the entire match.

A zero length string is returned both for capture groups that did not participate in the match and for actual zero length matches. To distinguish between these two cases use the function start(), which returns -1 for non-participating groups.

Parameters
groupNumthe capture group number
statusA reference to a UErrorCode to receive any errors. Possible errors are U_REGEX_INVALID_STATE if no match has been attempted or the last match failed and U_INDEX_OUTOFBOUNDS_ERROR for a bad capture group number.
Returns
the captured text
Stable:
ICU 2.4

◆ group() [3/4]

virtual UText* icu::RegexMatcher::group ( UText dest,
int64_t &  group_len,
UErrorCode status 
) const
virtual

Returns a shallow clone of the entire live input string with the UText current native index set to the beginning of the requested group.

Parameters
destThe UText into which the input should be cloned, or NULL to create a new UText
group_lenA reference to receive the length of the desired capture group
statusA reference to a UErrorCode to receive any errors. Possible errors are U_REGEX_INVALID_STATE if no match has been attempted or the last match failed and U_INDEX_OUTOFBOUNDS_ERROR for a bad capture group number.
Returns
dest if non-NULL, a shallow copy of the input text otherwise
Stable:
ICU 4.6

◆ group() [4/4]

virtual UText* icu::RegexMatcher::group ( int32_t  groupNum,
UText dest,
int64_t &  group_len,
UErrorCode status 
) const
virtual

Returns a shallow clone of the entire live input string with the UText current native index set to the beginning of the requested group.

A group length of zero is returned both for capture groups that did not participate in the match and for actual zero length matches. To distinguish between these two cases use the function start(), which returns -1 for non-participating groups.

Parameters
groupNumThe capture group number.
destThe UText into which the input should be cloned, or NULL to create a new UText.
group_lenA reference to receive the length of the desired capture group
statusA reference to a UErrorCode to receive any errors. Possible errors are U_REGEX_INVALID_STATE if no match has been attempted or the last match failed and U_INDEX_OUTOFBOUNDS_ERROR for a bad capture group number.
Returns
dest if non-NULL, a shallow copy of the input text otherwise
Stable:
ICU 4.6

◆ groupCount()

virtual int32_t icu::RegexMatcher::groupCount ( ) const
virtual

Returns the number of capturing groups in this matcher's pattern.

Returns
the number of capture groups
Stable:
ICU 2.4

◆ hasAnchoringBounds()

virtual UBool icu::RegexMatcher::hasAnchoringBounds ( ) const
virtual

Return true if this matcher is using anchoring bounds.

By default, matchers use anchoring region bounds.

Returns
TRUE if this matcher is using anchoring bounds.
Stable:
ICU 4.0

◆ hasTransparentBounds()

virtual UBool icu::RegexMatcher::hasTransparentBounds ( ) const
virtual

Queries the transparency of region bounds for this matcher.

See useTransparentBounds for a description of transparent and opaque bounds. By default, a matcher uses opaque region boundaries.

Returns
TRUE if this matcher is using opaque bounds, false if it is not.
Stable:
ICU 4.0

◆ hitEnd()

virtual UBool icu::RegexMatcher::hitEnd ( ) const
virtual

Return TRUE if the most recent matching operation attempted to access additional input beyond the available input text.

In this case, additional input text could change the results of the match.

hitEnd() is defined for both successful and unsuccessful matches. In either case hitEnd() will return TRUE if if the end of the text was reached at any point during the matching process.

Returns
TRUE if the most recent match hit the end of input
Stable:
ICU 4.0

◆ input()

virtual const UnicodeString& icu::RegexMatcher::input ( ) const
virtual

Returns the input string being matched.

Ownership of the string belongs to the matcher; it should not be altered or deleted. This method will work even if the input was originally supplied as a UText.

Returns
the input string
Stable:
ICU 2.4

◆ inputText()

virtual UText* icu::RegexMatcher::inputText ( ) const
virtual

Returns the input string being matched.

This is the live input text; it should not be altered or deleted. This method will work even if the input was originally supplied as a UnicodeString.

Returns
the input text
Stable:
ICU 4.6

◆ lookingAt() [1/2]

virtual UBool icu::RegexMatcher::lookingAt ( UErrorCode status)
virtual

Attempts to match the input string, starting from the beginning of the region, against the pattern.

Like the matches() method, this function always starts at the beginning of the input region; unlike that function, it does not require that the entire region be matched.

If the match succeeds then more information can be obtained via the start(), end(), and group() functions.

Parameters
statusA reference to a UErrorCode to receive any errors.
Returns
TRUE if there is a match at the start of the input string.
Stable:
ICU 2.4

◆ lookingAt() [2/2]

virtual UBool icu::RegexMatcher::lookingAt ( int64_t  startIndex,
UErrorCode status 
)
virtual

Attempts to match the input string, starting from the specified index, against the pattern.

The match may be of any length, and is not required to extend to the end of the input string. Contrast with match().

If the match succeeds then more information can be obtained via the start(), end(), and group() functions.

Parameters
startIndexThe input string (native) index at which to begin matching.
statusA reference to a UErrorCode to receive any errors.
Returns
TRUE if there is a match.
Stable:
ICU 2.8

◆ matches() [1/2]

virtual UBool icu::RegexMatcher::matches ( UErrorCode status)
virtual

Attempts to match the entire input region against the pattern.

Parameters
statusA reference to a UErrorCode to receive any errors.
Returns
TRUE if there is a match
Stable:
ICU 2.4

◆ matches() [2/2]

virtual UBool icu::RegexMatcher::matches ( int64_t  startIndex,
UErrorCode status 
)
virtual

Resets the matcher, then attempts to match the input beginning at the specified startIndex, and extending to the end of the input.

The input region is reset to include the entire input string. A successful match must extend to the end of the input.

Parameters
startIndexThe input string (native) index at which to begin matching.
statusA reference to a UErrorCode to receive any errors.
Returns
TRUE if there is a match
Stable:
ICU 2.8

◆ pattern()

virtual const RegexPattern& icu::RegexMatcher::pattern ( ) const
virtual

Returns the pattern that is interpreted by this matcher.

Returns
the RegexPattern for this RegexMatcher
Stable:
ICU 2.4

◆ refreshInputText()

virtual RegexMatcher& icu::RegexMatcher::refreshInputText ( UText input,
UErrorCode status 
)
virtual

Set the subject text string upon which the regular expression is looking for matches without changing any other aspect of the matching state.

The new and previous text strings must have the same content.

This function is intended for use in environments where ICU is operating on strings that may move around in memory. It provides a mechanism for notifying ICU that the string has been relocated, and providing a new UText to access the string in its new position.

Note that the regular expression implementation never copies the underlying text of a string being matched, but always operates directly on the original text provided by the user. Refreshing simply drops the references to the old text and replaces them with references to the new.

Caution: this function is normally used only by very specialized, system-level code. One example use case is with garbage collection that moves the text in memory.

Parameters
inputThe new (moved) text string.
statusReceives errors detected by this function.
Stable:
ICU 4.8

◆ region() [1/2]

virtual RegexMatcher& icu::RegexMatcher::region ( int64_t  start,
int64_t  limit,
UErrorCode status 
)
virtual

Sets the limits of this matcher's region.

The region is the part of the input string that will be searched to find a match. Invoking this method resets the matcher, and then sets the region to start at the index specified by the start parameter and end at the index specified by the end parameter.

Depending on the transparency and anchoring being used (see useTransparentBounds and useAnchoringBounds), certain constructs such as anchors may behave differently at or around the boundaries of the region

The function will fail if start is greater than limit, or if either index is less than zero or greater than the length of the string being matched.

Parameters
startThe (native) index to begin searches at.
limitThe index to end searches at (exclusive).
statusA reference to a UErrorCode to receive any errors.
Stable:
ICU 4.0

◆ region() [2/2]

virtual RegexMatcher& icu::RegexMatcher::region ( int64_t  regionStart,
int64_t  regionLimit,
int64_t  startIndex,
UErrorCode status 
)
virtual

Identical to region(start, limit, status) but also allows a start position without resetting the region state.

Parameters
regionStartThe region start
regionLimitthe limit of the region
startIndexThe (native) index within the region bounds at which to begin searches.
statusA reference to a UErrorCode to receive any errors. If startIndex is not within the specified region bounds, U_INDEX_OUTOFBOUNDS_ERROR is returned.
Stable:
ICU 4.6

◆ regionEnd()

virtual int32_t icu::RegexMatcher::regionEnd ( ) const
virtual

Reports the end (limit) index (exclusive) of this matcher's region.

The searches this matcher conducts are limited to finding matches within regionStart (inclusive) and regionEnd (exclusive).

Returns
The ending point (native) of this matcher's region.
Stable:
ICU 4.0

◆ regionEnd64()

virtual int64_t icu::RegexMatcher::regionEnd64 ( ) const
virtual

Reports the end (limit) index (exclusive) of this matcher's region.

The searches this matcher conducts are limited to finding matches within regionStart (inclusive) and regionEnd (exclusive).

Returns
The ending point (native) of this matcher's region.
Stable:
ICU 4.6

◆ regionStart()

virtual int32_t icu::RegexMatcher::regionStart ( ) const
virtual

Reports the start index of this matcher's region.

The searches this matcher conducts are limited to finding matches within regionStart (inclusive) and regionEnd (exclusive).

Returns
The starting (native) index of this matcher's region.
Stable:
ICU 4.0

◆ regionStart64()

virtual int64_t icu::RegexMatcher::regionStart64 ( ) const
virtual

Reports the start index of this matcher's region.

The searches this matcher conducts are limited to finding matches within regionStart (inclusive) and regionEnd (exclusive).

Returns
The starting (native) index of this matcher's region.
Stable:
ICU 4.6

◆ replaceAll() [1/2]

virtual UnicodeString icu::RegexMatcher::replaceAll ( const UnicodeString replacement,
UErrorCode status 
)
virtual

Replaces every substring of the input that matches the pattern with the given replacement string.

This is a convenience function that provides a complete find-and-replace-all operation.

This method first resets this matcher. It then scans the input string looking for matches of the pattern. Input that is not part of any match is left unchanged; each match is replaced in the result by the replacement string. The replacement string may contain references to capture groups.

Parameters
replacementa string containing the replacement text.
statusa reference to a UErrorCode to receive any errors.
Returns
a string containing the results of the find and replace.
Stable:
ICU 2.4

◆ replaceAll() [2/2]

virtual UText* icu::RegexMatcher::replaceAll ( UText replacement,
UText dest,
UErrorCode status 
)
virtual

Replaces every substring of the input that matches the pattern with the given replacement string.

This is a convenience function that provides a complete find-and-replace-all operation.

This method first resets this matcher. It then scans the input string looking for matches of the pattern. Input that is not part of any match is left unchanged; each match is replaced in the result by the replacement string. The replacement string may contain references to capture groups.

Parameters
replacementa string containing the replacement text.
desta mutable UText in which the results are placed. If NULL, a new UText will be created (which may not be mutable).
statusa reference to a UErrorCode to receive any errors.
Returns
a string containing the results of the find and replace. If a pre-allocated UText was provided, it will always be used and returned.
Stable:
ICU 4.6

◆ replaceFirst() [1/2]

virtual UnicodeString icu::RegexMatcher::replaceFirst ( const UnicodeString replacement,
UErrorCode status 
)
virtual

Replaces the first substring of the input that matches the pattern with the replacement string.

This is a convenience function that provides a complete find-and-replace operation.

This function first resets this RegexMatcher. It then scans the input string looking for a match of the pattern. Input that is not part of the match is appended directly to the result string; the match is replaced in the result by the replacement string. The replacement string may contain references to captured groups.

The state of the matcher (the position at which a subsequent find() would begin) after completing a replaceFirst() is not specified. The RegexMatcher should be reset before doing additional find() operations.

Parameters
replacementa string containing the replacement text.
statusa reference to a UErrorCode to receive any errors.
Returns
a string containing the results of the find and replace.
Stable:
ICU 2.4

◆ replaceFirst() [2/2]

virtual UText* icu::RegexMatcher::replaceFirst ( UText replacement,
UText dest,
UErrorCode status 
)
virtual

Replaces the first substring of the input that matches the pattern with the replacement string.

This is a convenience function that provides a complete find-and-replace operation.

This function first resets this RegexMatcher. It then scans the input string looking for a match of the pattern. Input that is not part of the match is appended directly to the result string; the match is replaced in the result by the replacement string. The replacement string may contain references to captured groups.

The state of the matcher (the position at which a subsequent find() would begin) after completing a replaceFirst() is not specified. The RegexMatcher should be reset before doing additional find() operations.

Parameters
replacementa string containing the replacement text.
desta mutable UText in which the results are placed. If NULL, a new UText will be created (which may not be mutable).
statusa reference to a UErrorCode to receive any errors.
Returns
a string containing the results of the find and replace. If a pre-allocated UText was provided, it will always be used and returned.
Stable:
ICU 4.6

◆ requireEnd()

virtual UBool icu::RegexMatcher::requireEnd ( ) const
virtual

Return TRUE the most recent match succeeded and additional input could cause it to fail.

If this method returns false and a match was found, then more input might change the match but the match won't be lost. If a match was not found, then requireEnd has no meaning.

Returns
TRUE if more input could cause the most recent match to no longer match.
Stable:
ICU 4.0

◆ reset() [1/4]

virtual RegexMatcher& icu::RegexMatcher::reset ( )
virtual

Resets this matcher.

The effect is to remove any memory of previous matches, and to cause subsequent find() operations to begin at the beginning of the input string.

Returns
this RegexMatcher.
Stable:
ICU 2.4

◆ reset() [2/4]

virtual RegexMatcher& icu::RegexMatcher::reset ( int64_t  index,
UErrorCode status 
)
virtual

Resets this matcher, and set the current input position.

The effect is to remove any memory of previous matches, and to cause subsequent find() operations to begin at the specified (native) position in the input string.

The matcher's region is reset to its default, which is the entire input string.

An alternative to this function is to set a match region beginning at the desired index.

Returns
this RegexMatcher.
Stable:
ICU 2.8

◆ reset() [3/4]

virtual RegexMatcher& icu::RegexMatcher::reset ( const UnicodeString input)
virtual

Resets this matcher with a new input string.

This allows instances of RegexMatcher to be reused, which is more efficient than creating a new RegexMatcher for each input string to be processed.

Parameters
inputThe new string on which subsequent pattern matches will operate. The matcher retains a reference to the callers string, and operates directly on that. Ownership of the string remains with the caller. Because no copy of the string is made, it is essential that the caller not delete the string until after regexp operations on it are done. Note that while a reset on the matcher with an input string that is then modified across/during matcher operations may be supported currently for UnicodeString, this was not originally intended behavior, and support for this is not guaranteed in upcoming versions of ICU.
Returns
this RegexMatcher.
Stable:
ICU 2.4

◆ reset() [4/4]

virtual RegexMatcher& icu::RegexMatcher::reset ( UText input)
virtual

Resets this matcher with a new input string.

This allows instances of RegexMatcher to be reused, which is more efficient than creating a new RegexMatcher for each input string to be processed.

Parameters
inputThe new string on which subsequent pattern matches will operate. The matcher makes a shallow clone of the given text; ownership of the original string remains with the caller. Because no deep copy of the text is made, it is essential that the caller not modify the string until after regexp operations on it are done.
Returns
this RegexMatcher.
Stable:
ICU 4.6

◆ resetPreserveRegion()

void icu::RegexMatcher::resetPreserveRegion ( )
Internal:
Do not use.

This API is for internal use only.

◆ setFindProgressCallback()

virtual void icu::RegexMatcher::setFindProgressCallback ( URegexFindProgressCallback callback,
const void *  context,
UErrorCode status 
)
virtual

Set a progress callback function for use with find operations on this Matcher.

During find operations, the callback will be invoked after each return from a match attempt, giving the application the opportunity to terminate a long-running find operation.

Parameters
callbackA pointer to the user-supplied callback function.
contextUser context pointer. The value supplied at the time the callback function is set will be saved and passed to the callback each time that it is called.
statusA reference to a UErrorCode to receive any errors.
Stable:
ICU 4.6

◆ setMatchCallback()

virtual void icu::RegexMatcher::setMatchCallback ( URegexMatchCallback callback,
const void *  context,
UErrorCode status 
)
virtual

Set a callback function for use with this Matcher.

During matching operations the function will be called periodically, giving the application the opportunity to terminate a long-running match.

Parameters
callbackA pointer to the user-supplied callback function.
contextUser context pointer. The value supplied at the time the callback function is set will be saved and passed to the callback each time that it is called.
statusA reference to a UErrorCode to receive any errors.
Stable:
ICU 4.0

◆ setStackLimit()

virtual void icu::RegexMatcher::setStackLimit ( int32_t  limit,
UErrorCode status 
)
virtual

Set the amount of heap storage available for use by the match backtracking stack.

The matcher is also reset, discarding any results from previous matches.

ICU uses a backtracking regular expression engine, with the backtrack stack maintained on the heap. This function sets the limit to the amount of memory that can be used for this purpose. A backtracking stack overflow will result in an error from the match operation that caused it.

A limit is desirable because a malicious or poorly designed pattern can use excessive memory, potentially crashing the process. A limit is enabled by default.

Parameters
limitThe maximum size, in bytes, of the matching backtrack stack. A value of zero means no limit. The limit must be greater or equal to zero.
statusA reference to a UErrorCode to receive any errors.
Stable:
ICU 4.0

◆ setTimeLimit()

virtual void icu::RegexMatcher::setTimeLimit ( int32_t  limit,
UErrorCode status 
)
virtual

Set a processing time limit for match operations with this Matcher.

Some patterns, when matching certain strings, can run in exponential time. For practical purposes, the match operation may appear to be in an infinite loop. When a limit is set a match operation will fail with an error if the limit is exceeded.

The units of the limit are steps of the match engine. Correspondence with actual processor time will depend on the speed of the processor and the details of the specific pattern, but will typically be on the order of milliseconds.

By default, the matching time is not limited.

Parameters
limitThe limit value, or 0 for no limit.
statusA reference to a UErrorCode to receive any errors.
Stable:
ICU 4.0

◆ setTrace()

void icu::RegexMatcher::setTrace ( UBool  state)

setTrace Debug function, enable/disable tracing of the matching engine.

For internal ICU development use only. DO NO USE!!!!

Internal:
Do not use. This API is for internal use only.

◆ split() [1/2]

virtual int32_t icu::RegexMatcher::split ( const UnicodeString input,
UnicodeString  dest[],
int32_t  destCapacity,
UErrorCode status 
)
virtual

Split a string into fields.

Somewhat like split() from Perl. The pattern matches identify delimiters that separate the input into fields. The input data between the matches becomes the fields themselves.

Parameters
inputThe string to be split into fields. The field delimiters match the pattern (in the "this" object). This matcher will be reset to this input string.
destAn array of UnicodeStrings to receive the results of the split. This is an array of actual UnicodeString objects, not an array of pointers to strings. Local (stack based) arrays can work well here.
destCapacityThe number of elements in the destination array. If the number of fields found is less than destCapacity, the extra strings in the destination array are not altered. If the number of destination strings is less than the number of fields, the trailing part of the input string, including any field delimiters, is placed in the last destination string.
statusA reference to a UErrorCode to receive any errors.
Returns
The number of fields into which the input string was split.
Stable:
ICU 2.6

◆ split() [2/2]

virtual int32_t icu::RegexMatcher::split ( UText input,
UText dest[],
int32_t  destCapacity,
UErrorCode status 
)
virtual

Split a string into fields.

Somewhat like split() from Perl. The pattern matches identify delimiters that separate the input into fields. The input data between the matches becomes the fields themselves.

Parameters
inputThe string to be split into fields. The field delimiters match the pattern (in the "this" object). This matcher will be reset to this input string.
destAn array of mutable UText structs to receive the results of the split. If a field is NULL, a new UText is allocated to contain the results for that field. This new UText is not guaranteed to be mutable.
destCapacityThe number of elements in the destination array. If the number of fields found is less than destCapacity, the extra strings in the destination array are not altered. If the number of destination strings is less than the number of fields, the trailing part of the input string, including any field delimiters, is placed in the last destination string.
statusA reference to a UErrorCode to receive any errors.
Returns
The number of fields into which the input string was split.
Stable:
ICU 4.6

◆ start() [1/2]

virtual int32_t icu::RegexMatcher::start ( UErrorCode status) const
virtual

Returns the index in the input string of the start of the text matched during the previous match operation.

Parameters
statusa reference to a UErrorCode to receive any errors.
Returns
The (native) position in the input string of the start of the last match.
Stable:
ICU 2.4

◆ start() [2/2]

virtual int32_t icu::RegexMatcher::start ( int32_t  group,
UErrorCode status 
) const
virtual

Returns the index in the input string of the start of the text matched by the specified capture group during the previous match operation.

Return -1 if the capture group exists in the pattern, but was not part of the last match.

Parameters
groupthe capture group number
statusA reference to a UErrorCode to receive any errors. Possible errors are U_REGEX_INVALID_STATE if no match has been attempted or the last match failed, and U_INDEX_OUTOFBOUNDS_ERROR for a bad capture group number
Returns
the (native) start position of substring matched by the specified group.
Stable:
ICU 2.4

◆ start64() [1/2]

virtual int64_t icu::RegexMatcher::start64 ( UErrorCode status) const
virtual

Returns the index in the input string of the start of the text matched during the previous match operation.

Parameters
statusa reference to a UErrorCode to receive any errors.
Returns
The (native) position in the input string of the start of the last match.
Stable:
ICU 4.6

◆ start64() [2/2]

virtual int64_t icu::RegexMatcher::start64 ( int32_t  group,
UErrorCode status 
) const
virtual

Returns the index in the input string of the start of the text matched by the specified capture group during the previous match operation.

Return -1 if the capture group exists in the pattern, but was not part of the last match.

Parameters
groupthe capture group number.
statusA reference to a UErrorCode to receive any errors. Possible errors are U_REGEX_INVALID_STATE if no match has been attempted or the last match failed, and U_INDEX_OUTOFBOUNDS_ERROR for a bad capture group number.
Returns
the (native) start position of substring matched by the specified group.
Stable:
ICU 4.6

◆ useAnchoringBounds()

virtual RegexMatcher& icu::RegexMatcher::useAnchoringBounds ( UBool  b)
virtual

Set whether this matcher is using Anchoring Bounds for its region.

With anchoring bounds, pattern anchors such as ^ and $ will match at the start and end of the region. Without Anchoring Bounds, anchors will only match at the positions they would in the complete text.

Anchoring Bounds are the default for regions.

Parameters
bTRUE if to enable anchoring bounds; FALSE to disable them.
Returns
This Matcher
Stable:
ICU 4.0

◆ useTransparentBounds()

virtual RegexMatcher& icu::RegexMatcher::useTransparentBounds ( UBool  b)
virtual

Sets the transparency of region bounds for this matcher.

Invoking this function with an argument of true will set this matcher to use transparent bounds. If the boolean argument is false, then opaque bounds will be used.

Using transparent bounds, the boundaries of this matcher's region are transparent to lookahead, lookbehind, and boundary matching constructs. Those constructs can see text beyond the boundaries of the region while checking for a match.

With opaque bounds, no text outside of the matcher's region is visible to lookahead, lookbehind, and boundary matching constructs.

By default, a matcher uses opaque bounds.

Parameters
bTRUE for transparent bounds; FALSE for opaque bounds
Returns
This Matcher;
Stable:
ICU 4.0

The documentation for this class was generated from the following file: