Movatterモバイル変換


[0]ホーム

URL:


ICU 78.1  78.1
Namespaces |Macros |Typedefs |Enumerations |Functions
usearch.h File Reference

C API: StringSearch.More...

#include "unicode/utypes.h"
#include "unicode/ucol.h"
#include "unicode/ucoleitr.h"
#include "unicode/ubrk.h"
#include "unicode/localpointer.h"

Go to the source code of this file.

Namespaces

 icu
 Filecoll.h.
 

Macros

#define USEARCH_DONE   -1
 DONE is returned by previous() and next() after all valid matches have been returned, and by first() and last() if there are no matches at all.More...
 

Typedefs

typedef structUStringSearch UStringSearch
 Data structure for searching.More...
 

Enumerations

enum  USearchAttribute {USEARCH_OVERLAP = 0,USEARCH_CANONICAL_MATCH = 1,USEARCH_ELEMENT_COMPARISON = 2,USEARCH_ATTRIBUTE_COUNT = 3 }
 
enum  USearchAttributeValue {
  USEARCH_DEFAULT = -1,USEARCH_OFF,USEARCH_ON,USEARCH_STANDARD_ELEMENT_COMPARISON,
  USEARCH_PATTERN_BASE_WEIGHT_IS_WILDCARD,USEARCH_ANY_BASE_WEIGHT_IS_WILDCARD,USEARCH_ATTRIBUTE_VALUE_COUNT
}
 

Functions

U_CAPIUStringSearchusearch_open (constUChar *pattern, int32_t patternlength, constUChar *text, int32_t textlength, const char *locale,UBreakIterator *breakiter,UErrorCode *status)
 Creates a String Search iterator data struct using the argument locale language rule set.More...
 
U_CAPIUStringSearchusearch_openFromCollator (constUChar *pattern, int32_t patternlength, constUChar *text, int32_t textlength, constUCollator *collator,UBreakIterator *breakiter,UErrorCode *status)
 Creates a String Search iterator data struct using the argument collator language rule set.More...
 
U_CAPI void usearch_close (UStringSearch *searchiter)
 Destroys and cleans up the String Search iterator data struct.More...
 
U_CAPI void usearch_setOffset (UStringSearch *strsrch, int32_t position,UErrorCode *status)
 Sets the current position in the text string which the next search will start from.More...
 
U_CAPI int32_t usearch_getOffset (constUStringSearch *strsrch)
 Return the current index in the string text being searched.More...
 
U_CAPI void usearch_setAttribute (UStringSearch *strsrch,USearchAttribute attribute,USearchAttributeValue value,UErrorCode *status)
 Sets the text searching attributes located in the enum USearchAttribute with values from the enum USearchAttributeValue.More...
 
U_CAPIUSearchAttributeValue usearch_getAttribute (constUStringSearch *strsrch,USearchAttribute attribute)
 Gets the text searching attributes.More...
 
U_CAPI int32_t usearch_getMatchedStart (constUStringSearch *strsrch)
 Returns the index to the match in the text string that was searched.More...
 
U_CAPI int32_t usearch_getMatchedLength (constUStringSearch *strsrch)
 Returns the length of text in the string which matches the search pattern.More...
 
U_CAPI int32_t usearch_getMatchedText (constUStringSearch *strsrch,UChar *result, int32_t resultCapacity,UErrorCode *status)
 Returns the text that was matched by the most recent call tousearch_first,usearch_next,usearch_previous, orusearch_last.More...
 
U_CAPI void usearch_setBreakIterator (UStringSearch *strsrch,UBreakIterator *breakiter,UErrorCode *status)
 Set the BreakIterator that will be used to restrict the points at which matches are detected.More...
 
U_CAPI constUBreakIteratorusearch_getBreakIterator (constUStringSearch *strsrch)
 Returns the BreakIterator that is used to restrict the points at which matches are detected.More...
 
U_CAPI void usearch_setText (UStringSearch *strsrch, constUChar *text, int32_t textlength,UErrorCode *status)
 Set the string text to be searched.More...
 
U_CAPI constUCharusearch_getText (constUStringSearch *strsrch, int32_t *length)
 Return the string text to be searched.More...
 
U_CAPIUCollatorusearch_getCollator (constUStringSearch *strsrch)
 Gets the collator used for the language rules.More...
 
U_CAPI void usearch_setCollator (UStringSearch *strsrch, constUCollator *collator,UErrorCode *status)
 Sets the collator used for the language rules.More...
 
U_CAPI void usearch_setPattern (UStringSearch *strsrch, constUChar *pattern, int32_t patternlength,UErrorCode *status)
 Sets the pattern used for matching.More...
 
U_CAPI constUCharusearch_getPattern (constUStringSearch *strsrch, int32_t *length)
 Gets the search pattern.More...
 
U_CAPI int32_t usearch_first (UStringSearch *strsrch,UErrorCode *status)
 Returns the first index at which the string text matches the search pattern.More...
 
U_CAPI int32_t usearch_following (UStringSearch *strsrch, int32_t position,UErrorCode *status)
 Returns the first index equal or greater thanposition at which the string text matches the search pattern.More...
 
U_CAPI int32_t usearch_last (UStringSearch *strsrch,UErrorCode *status)
 Returns the last index in the target text at which it matches the search pattern.More...
 
U_CAPI int32_t usearch_preceding (UStringSearch *strsrch, int32_t position,UErrorCode *status)
 Returns the first index less thanposition at which the string text matches the search pattern.More...
 
U_CAPI int32_t usearch_next (UStringSearch *strsrch,UErrorCode *status)
 Returns the index of the next point at which the string text matches the search pattern, starting from the current position.More...
 
U_CAPI int32_t usearch_previous (UStringSearch *strsrch,UErrorCode *status)
 Returns the index of the previous point at which the string text matches the search pattern, starting at the current position.More...
 
U_CAPI void usearch_reset (UStringSearch *strsrch)
 Reset the iteration.More...
 
U_CAPIUBool usearch_search (UStringSearch *strsrch, int32_t startIdx, int32_t *matchStart, int32_t *matchLimit,UErrorCode *status)
 Simple forward search for the pattern, starting at a specified index, and using a default set search options.More...
 
U_CAPIUBool usearch_searchBackwards (UStringSearch *strsrch, int32_t startIdx, int32_t *matchStart, int32_t *matchLimit,UErrorCode *status)
 Simple backwards search for the pattern, starting at a specified index, and using using a default set search options.More...
 

Detailed Description

C API: StringSearch.

C APIs for an engine that provides language-sensitive text searching based on the comparison rules defined in aUCollator data struct, seeucol.h. This ensures that language eccentricity can be handled, e.g. for the German collator, characters ß and SS will be matched if case is chosen to be ignored. See the"ICU Collation Design Document" for more information.

As of ICU4C 4.0 / ICU4J 53, the implementation uses a linear search. In previous versions, a modified form of the Boyer-Moore searching algorithm was used. For more information on the modified Boyer-Moore algorithm see"Efficient Text Searching in Java", published inJava Report in February, 1999.

There are 2 match options for selection:
Let S' be the sub-string of a text string S between the offsets start and end <start, end>.
A pattern string P matches a text string S at the offsets <start, end> if

 option 1. Some canonical equivalent of P matches some canonical equivalent           of S'option 2. P matches S' and if P starts or ends with a combining mark,           there exists no non-ignorable combining mark before or after S'           in S respectively.

Option 2. will be the default.

This search has APIs similar to that of other text iteration mechanisms such as the break iterators inubrk.h. Using these APIs, it is easy to scan through text looking for all occurrences of a given pattern. This search iterator allows changing of direction by calling areset followed by anext orprevious. Though a direction change can occur without callingreset first,
this operation comes with some speed penalty. Generally, match results in the forward direction will match the result matches in the backwards direction in the reverse order

usearch.h provides APIs to specify the starting position within the text string to be searched, e.g.usearch_setOffset,usearch_preceding andusearch_following. Since the starting position will be set as it is specified, please take note that there are some dangerous positions which the search may render incorrect results:

A breakiterator can be used if only matches at logical breaks are desired. Using a breakiterator will only give you results that exactly matches the boundaries given by the breakiterator. For instance the pattern "e" will not be found in the string "\u00e9" if a character break iterator is used.

Options are provided to handle overlapping matches. E.g. In English, overlapping matches produces the result 0 and 2 for the pattern "abab" in the text "ababab", where else mutually exclusive matches only produce the result of 0.

Options are also provided to implement "asymmetric search" as described inUTS #10 Unicode Collation Algorithm, specifically the USearchAttribute USEARCH_ELEMENT_COMPARISON and its values.

Though collator attributes will be taken into consideration while performing matches, there are no APIs here for setting and getting the attributes. These attributes can be set by getting the collator fromusearch_getCollator and using the APIs inucol.h. Lastly to update String Search to the new collator attributes,usearch_reset() has to be called.

Restriction:
Currently there are no composite characters that consists of a character with combining class > 0 before a character with combining class == 0. However, if such a character exists in the future, the search mechanism does not guarantee the results for option 1.

Example of use:

char *tgtstr = "The quick brown fox jumped over the lazy fox";char *patstr = "fox";UChar target[64];UChar pattern[16];UErrorCode status = U_ZERO_ERROR;u_uastrcpy(target, tgtstr);u_uastrcpy(pattern, patstr);UStringSearch *search = usearch_open(pattern, -1, target, -1, "en_US",                                  NULL, &status);if (U_SUCCESS(status)) {    for (int pos = usearch_first(search, &status);          pos != USEARCH_DONE;          pos = usearch_next(search, &status))    {        printf("Found match at %d pos, length is %d\n", pos,                                        usearch_getMatchedLength(search));    }}usearch_close(search);
Stable:
ICU 2.4

Definition in fileusearch.h.

Macro Definition Documentation

◆ USEARCH_DONE

#define USEARCH_DONE   -1

DONE is returned by previous() and next() after all valid matches have been returned, and by first() and last() if there are no matches at all.

Stable:
ICU 2.4

Definition at line151 of fileusearch.h.

Typedef Documentation

◆ UStringSearch

typedef structUStringSearchUStringSearch

Data structure for searching.

Stable:
ICU 2.4

Definition at line1 of fileusearch.h.

Enumeration Type Documentation

◆ USearchAttribute

enumUSearchAttribute
Stable:
ICU 2.4
Enumerator
USEARCH_OVERLAP 

Option for overlapping matches.

Stable:
ICU 2.4
USEARCH_CANONICAL_MATCH 

Option for canonical matches; option 1 in header documentation.

The default value will be USEARCH_OFF. Note: Setting this option to USEARCH_ON currently has no effect on search behavior, and this option is deprecated. Instead, to control canonical match behavior, you must set UCOL_NORMALIZATION_MODE appropriately (to UCOL_OFF or UCOL_ON) in the UCollator used by the UStringSearch object.

See also
usearch_openFromCollator
usearch_getCollator
usearch_setCollator
ucol_getAttribute
Deprecated:
ICU 53
USEARCH_ELEMENT_COMPARISON 

Option to control how collation elements are compared.

The default value will be USEARCH_STANDARD_ELEMENT_COMPARISON.

Stable:
ICU 4.4
USEARCH_ATTRIBUTE_COUNT 

One more than the highest normal USearchAttribute value.

Deprecated:
ICU 58 The numeric value may change over time, see ICU ticket #12420.

Definition at line167 of fileusearch.h.

◆ USearchAttributeValue

enumUSearchAttributeValue
Stable:
ICU 2.4
Enumerator
USEARCH_DEFAULT 

Default value for any USearchAttribute.

Stable:
ICU 2.4
USEARCH_OFF 

Value for USEARCH_OVERLAP and USEARCH_CANONICAL_MATCH.

Stable:
ICU 2.4
USEARCH_ON 

Value for USEARCH_OVERLAP and USEARCH_CANONICAL_MATCH.

Stable:
ICU 2.4
USEARCH_STANDARD_ELEMENT_COMPARISON 

Value (default) for USEARCH_ELEMENT_COMPARISON; standard collation element comparison at the specified collator strength.

Stable:
ICU 4.4
USEARCH_PATTERN_BASE_WEIGHT_IS_WILDCARD 

Value for USEARCH_ELEMENT_COMPARISON; collation element comparison is modified to effectively provide behavior between the specified strength and strength - 1.

Collation elements in the pattern that have the base weight for the specified strength are treated as "wildcards" that match an element with any other weight at that collation level in the searched text. For example, with a secondary-strength English collator, a plain 'e' in the pattern will match a plain e or an e with any diacritic in the searched text, but an e with diacritic in the pattern will only match an e with the same diacritic in the searched text.

This supports "asymmetric search" as described inUTS #10 Unicode Collation Algorithm.

Stable:
ICU 4.4
USEARCH_ANY_BASE_WEIGHT_IS_WILDCARD 

Value for USEARCH_ELEMENT_COMPARISON.

collation element comparison is modified to effectively provide behavior between the specified strength and strength - 1. Collation elements in either the pattern or the searched text that have the base weight for the specified strength are treated as "wildcards" that match an element with any other weight at that collation level. For example, with a secondary-strength English collator, a plain 'e' in the pattern will match a plain e or an e with any diacritic in the searched text, but an e with diacritic in the pattern will only match an e with the same diacritic or a plain e in the searched text.

This option is similar to "asymmetric search" as described inUTS #10 Unicode Collation Algorithm, but also allows unmarked characters in the searched text to match marked or unmarked versions of that character in the pattern.

Stable:
ICU 4.4
USEARCH_ATTRIBUTE_VALUE_COUNT 

One more than the highest normal USearchAttributeValue value.

Deprecated:
ICU 58 The numeric value may change over time, see ICU ticket #12420.

Definition at line209 of fileusearch.h.

Function Documentation

◆ usearch_close()

U_CAPI void usearch_close(UStringSearchsearchiter)

Destroys and cleans up the String Search iterator data struct.

If a collator was created inusearch_open, then it will be destroyed here.

Parameters
searchiterThe UStringSearch to clean up
Stable:
ICU 2.4

◆ usearch_first()

U_CAPI int32_t usearch_first(UStringSearchstrsrch,
UErrorCodestatus 
)

Returns the first index at which the string text matches the search pattern.


The iterator is adjusted so that its current index (as returned byusearch_getOffset) is the match position if one was found. If a match is not found,USEARCH_DONE will be returned and the iterator will be adjusted to the indexUSEARCH_DONE.

Parameters
strsrchsearch iterator data struct
statusfor errors if it occurs
Returns
The character index of the first match, orUSEARCH_DONE if there are no matches.
See also
usearch_getOffset
USEARCH_DONE
Stable:
ICU 2.4

◆ usearch_following()

U_CAPI int32_t usearch_following(UStringSearchstrsrch,
int32_t position,
UErrorCodestatus 
)

Returns the first index equal or greater thanposition at which the string text matches the search pattern.

The iterator is adjusted so that its current index (as returned byusearch_getOffset) is the match position if one was found. If a match is not found,USEARCH_DONE will be returned and the iterator will be adjusted to the indexUSEARCH_DONE

Search positions that may render incorrect results are highlighted in the header comments. If position is less than or greater than the text range for searching, an U_INDEX_OUTOFBOUNDS_ERROR will be returned

Parameters
strsrchsearch iterator data struct
positionto start the search at
statusfor errors if it occurs
Returns
The character index of the first match followingpos, orUSEARCH_DONE if there are no matches.
See also
usearch_getOffset
USEARCH_DONE
Stable:
ICU 2.4

◆ usearch_getAttribute()

U_CAPIUSearchAttributeValue usearch_getAttribute(constUStringSearchstrsrch,
USearchAttribute attribute 
)

Gets the text searching attributes.

Parameters
strsrchsearch iterator data struct
attributetext attribute to be retrieve
Returns
text attribute value
See also
usearch_setAttribute
Stable:
ICU 2.4

◆ usearch_getBreakIterator()

U_CAPI constUBreakIterator* usearch_getBreakIterator(constUStringSearchstrsrch)

Returns the BreakIterator that is used to restrict the points at which matches are detected.

This will be the same object that was passed to the constructor or tousearch_setBreakIterator. Note thatNULL is a legal value; it means that break detection should not be attempted.

Parameters
strsrchsearch iterator data struct
Returns
break iterator used
See also
usearch_setBreakIterator
Stable:
ICU 2.4

◆ usearch_getCollator()

U_CAPIUCollator* usearch_getCollator(constUStringSearchstrsrch)

Gets the collator used for the language rules.

Deleting the returnedUCollator before callingusearch_close would cause the string search to fail.usearch_close will delete the collator if this search owns it.

Parameters
strsrchsearch iterator data struct
Returns
collator
Stable:
ICU 2.4

◆ usearch_getMatchedLength()

U_CAPI int32_t usearch_getMatchedLength(constUStringSearchstrsrch)

Returns the length of text in the string which matches the search pattern.

This call returns a valid result only after a successful call tousearch_first,usearch_next,usearch_previous, orusearch_last. Just after construction, or after a searching method returnsUSEARCH_DONE, this method will return 0.

Parameters
strsrchsearch iterator data struct
Returns
The length of the match in the string text, or 0 if there is no match currently.
See also
usearch_first
usearch_next
usearch_previous
usearch_last
USEARCH_DONE
Stable:
ICU 2.4

◆ usearch_getMatchedStart()

U_CAPI int32_t usearch_getMatchedStart(constUStringSearchstrsrch)

Returns the index to the match in the text string that was searched.

This call returns a valid result only after a successful call tousearch_first,usearch_next,usearch_previous, orusearch_last. Just after construction, or after a searching method returnsUSEARCH_DONE, this method will returnUSEARCH_DONE.

Useusearch_getMatchedLength to get the matched string length.

Parameters
strsrchsearch iterator data struct
Returns
index to a substring within the text string that is being searched.
See also
usearch_first
usearch_next
usearch_previous
usearch_last
USEARCH_DONE
Stable:
ICU 2.4

◆ usearch_getMatchedText()

U_CAPI int32_t usearch_getMatchedText(constUStringSearchstrsrch,
UCharresult,
int32_t resultCapacity,
UErrorCodestatus 
)

Returns the text that was matched by the most recent call tousearch_first,usearch_next,usearch_previous, orusearch_last.

If the iterator is not pointing at a valid match (e.g. just after construction or afterUSEARCH_DONE has been returned, returns an empty string. If result is not large enough to store the matched text, result will be filled with the partial text and an U_BUFFER_OVERFLOW_ERROR will be returned in status. result will be null-terminated whenever possible. If the buffer fits the matched text exactly, a null-termination is not possible, then a U_STRING_NOT_TERMINATED_ERROR set in status. Pre-flighting can be either done with length = 0 or the APIusearch_getMatchedLength.

Parameters
strsrchsearch iterator data struct
resultUChar buffer to store the matched string
resultCapacitylength of the result buffer
statuserror returned if result is not large enough
Returns
exact length of the matched text, not counting the null-termination
See also
usearch_first
usearch_next
usearch_previous
usearch_last
USEARCH_DONE
Stable:
ICU 2.4

◆ usearch_getOffset()

U_CAPI int32_t usearch_getOffset(constUStringSearchstrsrch)

Return the current index in the string text being searched.

If the iteration has gone past the end of the text (or past the beginning for a backwards search),USEARCH_DONE is returned.

Parameters
strsrchsearch iterator data struct
See also
USEARCH_DONE
Stable:
ICU 2.4

◆ usearch_getPattern()

U_CAPI constUChar* usearch_getPattern(constUStringSearchstrsrch,
int32_t * length 
)

Gets the search pattern.

Parameters
strsrchsearch iterator data struct
lengthreturn length of the pattern, -1 indicates that the pattern is null-terminated
Returns
pattern string
Stable:
ICU 2.4

◆ usearch_getText()

U_CAPI constUChar* usearch_getText(constUStringSearchstrsrch,
int32_t * length 
)

Return the string text to be searched.

Parameters
strsrchsearch iterator data struct
lengthreturned string text length
Returns
string text
See also
usearch_setText
Stable:
ICU 2.4

◆ usearch_last()

U_CAPI int32_t usearch_last(UStringSearchstrsrch,
UErrorCodestatus 
)

Returns the last index in the target text at which it matches the search pattern.

The iterator is adjusted so that its current index (as returned byusearch_getOffset) is the match position if one was found. If a match is not found,USEARCH_DONE will be returned and the iterator will be adjusted to the indexUSEARCH_DONE.

Parameters
strsrchsearch iterator data struct
statusfor errors if it occurs
Returns
The index of the first match, orUSEARCH_DONE if there are no matches.
See also
usearch_getOffset
USEARCH_DONE
Stable:
ICU 2.4

◆ usearch_next()

U_CAPI int32_t usearch_next(UStringSearchstrsrch,
UErrorCodestatus 
)

Returns the index of the next point at which the string text matches the search pattern, starting from the current position.

The iterator is adjusted so that its current index (as returned byusearch_getOffset) is the match position if one was found. If a match is not found,USEARCH_DONE will be returned and the iterator will be adjusted to the indexUSEARCH_DONE

Parameters
strsrchsearch iterator data struct
statusfor errors if it occurs
Returns
The index of the next match after the current position, orUSEARCH_DONE if there are no more matches.
See also
usearch_first
usearch_getOffset
USEARCH_DONE
Stable:
ICU 2.4

◆ usearch_open()

U_CAPIUStringSearch* usearch_open(constUCharpattern,
int32_t patternlength,
constUChartext,
int32_t textlength,
const char * locale,
UBreakIteratorbreakiter,
UErrorCodestatus 
)

Creates a String Search iterator data struct using the argument locale language rule set.

A collator will be created in the process, which will be owned by this String Search and will be deleted inusearch_close.

The UStringSearch retains a pointer to both the pattern and text strings. The caller must not modify or delete them while using the UStringSearch.

Parameters
patternfor matching
patternlengthlength of the pattern, -1 for null-termination
texttext string
textlengthlength of the text string, -1 for null-termination
localename of locale for the rules to be used
breakiterA BreakIterator that will be used to restrict the points at which matches are detected. If a match is found, but the match's start or end index is not a boundary as determined by theBreakIterator, the match will be rejected and another will be searched for. If this parameter isNULL, no break detection is attempted.
statusfor errors if it occurs. If pattern or text is NULL, or if patternlength or textlength is 0 then an U_ILLEGAL_ARGUMENT_ERROR is returned.
Returns
search iterator data structure, or NULL if there is an error.
Stable:
ICU 2.4

◆ usearch_openFromCollator()

U_CAPIUStringSearch* usearch_openFromCollator(constUCharpattern,
int32_t patternlength,
constUChartext,
int32_t textlength,
constUCollatorcollator,
UBreakIteratorbreakiter,
UErrorCodestatus 
)

Creates a String Search iterator data struct using the argument collator language rule set.

Note, user retains the ownership of this collator, thus the responsibility of deletion lies with the user.

NOTE: String Search cannot be instantiated from a collator that has collate digits as numbers (CODAN) turned on (UCOL_NUMERIC_COLLATION).

The UStringSearch retains a pointer to both the pattern and text strings. The caller must not modify or delete them while using the UStringSearch.

Parameters
patternfor matching
patternlengthlength of the pattern, -1 for null-termination
texttext string
textlengthlength of the text string, -1 for null-termination
collatorused for the language rules
breakiterA BreakIterator that will be used to restrict the points at which matches are detected. If a match is found, but the match's start or end index is not a boundary as determined by theBreakIterator, the match will be rejected and another will be searched for. If this parameter isNULL, no break detection is attempted.
statusfor errors if it occurs. If collator, pattern or text is NULL, or if patternlength or textlength is 0 then an U_ILLEGAL_ARGUMENT_ERROR is returned.
Returns
search iterator data structure, or NULL if there is an error.
Stable:
ICU 2.4

◆ usearch_preceding()

U_CAPI int32_t usearch_preceding(UStringSearchstrsrch,
int32_t position,
UErrorCodestatus 
)

Returns the first index less thanposition at which the string text matches the search pattern.

The iterator is adjusted so that its current index (as returned byusearch_getOffset) is the match position if one was found. If a match is not found,USEARCH_DONE will be returned and the iterator will be adjusted to the indexUSEARCH_DONE

Search positions that may render incorrect results are highlighted in the header comments. If position is less than or greater than the text range for searching, an U_INDEX_OUTOFBOUNDS_ERROR will be returned.

WhenUSEARCH_OVERLAP option is off, the last index of the result match is always less thanposition. WhenUSERARCH_OVERLAP is on, the result match may span acrossposition.

Parameters
strsrchsearch iterator data struct
positionindex position the search is to begin at
statusfor errors if it occurs
Returns
The character index of the first match precedingpos, orUSEARCH_DONE if there are no matches.
See also
usearch_getOffset
USEARCH_DONE
Stable:
ICU 2.4

◆ usearch_previous()

U_CAPI int32_t usearch_previous(UStringSearchstrsrch,
UErrorCodestatus 
)

Returns the index of the previous point at which the string text matches the search pattern, starting at the current position.

The iterator is adjusted so that its current index (as returned byusearch_getOffset) is the match position if one was found. If a match is not found,USEARCH_DONE will be returned and the iterator will be adjusted to the indexUSEARCH_DONE

Parameters
strsrchsearch iterator data struct
statusfor errors if it occurs
Returns
The index of the previous match before the current position, orUSEARCH_DONE if there are no more matches.
See also
usearch_last
usearch_getOffset
USEARCH_DONE
Stable:
ICU 2.4

◆ usearch_reset()

U_CAPI void usearch_reset(UStringSearchstrsrch)

Reset the iteration.

Search will begin at the start of the text string if a forward iteration is initiated before a backwards iteration. Otherwise if a backwards iteration is initiated before a forwards iteration, the search will begin at the end of the text string.

Parameters
strsrchsearch iterator data struct
See also
usearch_first
Stable:
ICU 2.4

◆ usearch_search()

U_CAPIUBool usearch_search(UStringSearchstrsrch,
int32_t startIdx,
int32_t * matchStart,
int32_t * matchLimit,
UErrorCodestatus 
)

Simple forward search for the pattern, starting at a specified index, and using a default set search options.

This is an experimental function, and is not an official part of the ICU API.

The collator options, such as UCOL_STRENGTH and UCOL_NORMALIZTION, are honored.

The UStringSearch options USEARCH_CANONICAL_MATCH, USEARCH_OVERLAP and any Break Iterator are ignored.

Matches obey the following constraints:

Characters at the start or end positions of a match that are ignorablefor collation are not included as part of the match, unless theyare part of a combining sequence, as described below.A match will not include a partial combining sequence.  Combiningcharacter sequences  are considered to be  inseparable units,and either match the pattern completely, or are considered to not matchat all.  Thus, for example, an A followed a combining accent mark will not be found when searching for a plain (unaccented) A.   (unlessthe collation strength has been set to ignore all accents).When beginning a search, the initial starting position, startIdx,is assumed to be an acceptable match boundary with respect tocombining characters.  A combining sequence that spans across thestarting point will not suppress a match beginning at startIdx.Characters that expand to multiple collation elements(German sharp-S becoming 'ss', or the composed forms of accentedcharacters, for example) also must match completely.Searching for a single 's' in a string containing only a sharp-s will find no match.
Parameters
strsrchthe UStringSearch struct, which references both the text to be searched and the pattern being sought.
startIdxThe index into the text to begin the search.
matchStartAn out parameter, the starting index of the matched text. This parameter may be NULL. A value of -1 will be returned if no match was found.
matchLimitOut parameter, the index of the first position following the matched text. The matchLimit will be at a suitable position for beginning a subsequent search in the input text. This parameter may be NULL. A value of -1 will be returned if no match was found.
statusReport any errors. Note that no match found is not an error.
Returns
true if a match was found, false otherwise.
Internal:
Do not use. This API is for internal use only.

◆ usearch_searchBackwards()

U_CAPIUBool usearch_searchBackwards(UStringSearchstrsrch,
int32_t startIdx,
int32_t * matchStart,
int32_t * matchLimit,
UErrorCodestatus 
)

Simple backwards search for the pattern, starting at a specified index, and using using a default set search options.

This is an experimental function, and is not an official part of the ICU API.

The collator options, such as UCOL_STRENGTH and UCOL_NORMALIZTION, are honored.

The UStringSearch options USEARCH_CANONICAL_MATCH, USEARCH_OVERLAP and any Break Iterator are ignored.

Matches obey the following constraints:

Characters at the start or end positions of a match that are ignorablefor collation are not included as part of the match, unless theyare part of a combining sequence, as described below.A match will not include a partial combining sequence.  Combiningcharacter sequences  are considered to be  inseparable units,and either match the pattern completely, or are considered to not matchat all.  Thus, for example, an A followed a combining accent mark will not be found when searching for a plain (unaccented) A.   (unlessthe collation strength has been set to ignore all accents).When beginning a search, the initial starting position, startIdx,is assumed to be an acceptable match boundary with respect tocombining characters.  A combining sequence that spans across thestarting point will not suppress a match beginning at startIdx.Characters that expand to multiple collation elements(German sharp-S becoming 'ss', or the composed forms of accentedcharacters, for example) also must match completely.Searching for a single 's' in a string containing only a sharp-s will find no match.
Parameters
strsrchthe UStringSearch struct, which references both the text to be searched and the pattern being sought.
startIdxThe index into the text to begin the search.
matchStartAn out parameter, the starting index of the matched text. This parameter may be NULL. A value of -1 will be returned if no match was found.
matchLimitOut parameter, the index of the first position following the matched text. The matchLimit will be at a suitable position for beginning a subsequent search in the input text. This parameter may be NULL. A value of -1 will be returned if no match was found.
statusReport any errors. Note that no match found is not an error.
Returns
true if a match was found, false otherwise.
Internal:
Do not use. This API is for internal use only.

◆ usearch_setAttribute()

U_CAPI void usearch_setAttribute(UStringSearchstrsrch,
USearchAttribute attribute,
USearchAttributeValue value,
UErrorCodestatus 
)

Sets the text searching attributes located in the enum USearchAttribute with values from the enum USearchAttributeValue.

USEARCH_DEFAULT can be used for all attributes for resetting.

Parameters
strsrchsearch iterator data struct
attributetext attribute to be set
valuetext attribute value
statusfor errors if it occurs
See also
usearch_getAttribute
Stable:
ICU 2.4

◆ usearch_setBreakIterator()

U_CAPI void usearch_setBreakIterator(UStringSearchstrsrch,
UBreakIteratorbreakiter,
UErrorCodestatus 
)

Set the BreakIterator that will be used to restrict the points at which matches are detected.

Parameters
strsrchsearch iterator data struct
breakiterA BreakIterator that will be used to restrict the points at which matches are detected. If a match is found, but the match's start or end index is not a boundary as determined by theBreakIterator, the match will be rejected and another will be searched for. If this parameter isNULL, no break detection is attempted.
statusfor errors if it occurs
See also
usearch_getBreakIterator
Stable:
ICU 2.4

◆ usearch_setCollator()

U_CAPI void usearch_setCollator(UStringSearchstrsrch,
constUCollatorcollator,
UErrorCodestatus 
)

Sets the collator used for the language rules.

User retains the ownership of this collator, thus the responsibility of deletion lies with the user. This method causes internal data such as the pattern collation elements and shift tables to be recalculated, but the iterator's position is unchanged.

Parameters
strsrchsearch iterator data struct
collatorto be used
statusfor errors if it occurs
Stable:
ICU 2.4

◆ usearch_setOffset()

U_CAPI void usearch_setOffset(UStringSearchstrsrch,
int32_t position,
UErrorCodestatus 
)

Sets the current position in the text string which the next search will start from.

Clears previous states. This method takes the argument index and sets the position in the text string accordingly without checking if the index is pointing to a valid starting point to begin searching. Search positions that may render incorrect results are highlighted in the header comments

Parameters
strsrchsearch iterator data struct
positionposition to start next search from. If position is less than or greater than the text range for searching, an U_INDEX_OUTOFBOUNDS_ERROR will be returned
statuserror status if any.
Stable:
ICU 2.4

◆ usearch_setPattern()

U_CAPI void usearch_setPattern(UStringSearchstrsrch,
constUCharpattern,
int32_t patternlength,
UErrorCodestatus 
)

Sets the pattern used for matching.

Internal data like the pattern collation elements will be recalculated, but the iterator's position is unchanged.

The UStringSearch retains a pointer to the pattern string. The caller must not modify or delete the string while using the UStringSearch.

Parameters
strsrchsearch iterator data struct
patternstring
patternlengthpattern length, -1 for null-terminated string
statusfor errors if it occurs. If text is NULL, or textlength is 0 then an U_ILLEGAL_ARGUMENT_ERROR is returned with no change done to strsrch.
Stable:
ICU 2.4

◆ usearch_setText()

U_CAPI void usearch_setText(UStringSearchstrsrch,
constUChartext,
int32_t textlength,
UErrorCodestatus 
)

Set the string text to be searched.

Text iteration will hence begin at the start of the text string. This method is useful if you want to re-use an iterator to search for the same pattern within a different body of text.

The UStringSearch retains a pointer to the text string. The caller must not modify or delete the string while using the UStringSearch.

Parameters
strsrchsearch iterator data struct
textnew string to look for match
textlengthlength of the new string, -1 for null-termination
statusfor errors if it occurs. If text is NULL, or textlength is 0 then an U_ILLEGAL_ARGUMENT_ERROR is returned with no change done to strsrch.
See also
usearch_getText
Stable:
ICU 2.4

Generated by doxygen 1.9.1
[8]ページ先頭

©2009-2025 Movatter.jp