CFStringFindCharacterFromSet(_:_:_:_:_:)
Query the range of the first character contained in the specified character set.
Declaration
func CFStringFindCharacterFromSet(_ theString: CFString!, _ theSet: CFCharacterSet!, _ rangeToSearch: CFRange, _ searchOptions: CFStringCompareFlags, _ result: UnsafeMutablePointer<CFRange>!) -> BoolParameters
- theString:
The string to search.
- theSet:
The character set against which the membership of characters is checked.
- rangeToSearch:
The range of characters within
theStringto search. If the range location or end point (defined by the location plus length minus1) are outside the index space of the string (0toN-1inclusive, whereNis the length of the string), the behavior is undefined. The specified range must not exceed the length of the string. If the range length is negative, the behavior is undefined. The range may be empty (length0), in which case no search is performed. - searchOptions:
The option flags to control the search behavior. The supported options are Comparebackwards and Compareanchored. If other option flags are specified, the behavior is undefined.
- result:
On return, a pointer to a CFRange structure (supplied by the caller) in which the search result is stored. Note that the length of this range could be more than
1(if the character in question is a multi-byte character).You may pass
NULLif you don’t need this result.
Return Value
true if a character in the character set is found and result is filled, false otherwise.