NSRegularExpression Class Reference
| Inherits from | |
| Conforms to | |
| Framework | /System/Library/Frameworks/Foundation.framework |
| Availability | Available in iOS 4.0 and later. |
| Declared in | NSRegularExpression.h |
Overview
The NSRegularExpression class is used to represent and apply regular expressions to Unicode strings. An instance of this class is an immutable representation of a compiled regular expression pattern and various option flags. The pattern syntax currently supported is that specified by ICU.
The fundamental matching method for NSRegularExpression is a Block iterator method that allows clients to supply a Block object which will be invoked each time the regular expression matches a portion of the target string. There are additional convenience methods for returning all the matches as an array, the total number of matches, the first match, and the range of the first match.
An individual match is represented by an instance of the NSTextCheckingResult class, which carries information about the overall matched range (via its range property), and the range of each individual capture group (via the rangeAtIndex: method). For basic NSRegularExpression objects, these match results will be of type NSTextCheckingTypeRegularExpression, but subclasses may use other types.
Examples Using NSRegularExpression
What follows are a set of graduated examples for using the NSRegularExpression class. All these examples use the regular expression \\b(a|b)(c|d)\\b as their regular expression.
This snippet creates a regular expression to match two-letter words, in which the first letter is “a” or “b” and the second letter is “c” or “d”. Specifying NSRegularExpressionCaseInsensitive means that matches will be case-insensitive, so this will match “BC”, “aD”, and so forth, as well as their lower-case equivalents.
NSError *error = NULL; |
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@"\\b(a|b)(c|d)\\b" |
options:NSRegularExpressionCaseInsensitive |
error:&error]; |
The numberOfMatchesInString:options:range: method provides a simple mechanism for counting the number of matches in a given range of a string.
NSUInteger numberOfMatches = [regex numberOfMatchesInString:string |
options:0 |
range:NSMakeRange(0, [string length])]; |
If you are interested only in the overall range of the first match, the rangeOfFirstMatchInString:options:range: method provides it for you. Some regular expressions (though not the example pattern) can successfully match a zero-length range, so the comparison of the resulting range with {NSNotFound, 0} is the most reliable way to determine whether there was a match or not.
The example regular expression contains two capture groups, corresponding to the two sets of parentheses, one for the first letter, and one for the second. If you are interested in more than just the overall matched range, you want to obtain an NSTextCheckingResult object corresponding to a given match. This object provides information about the overall matched range, via its range property, and also supplies the capture group ranges, via the rangeAtIndex: method. The first capture group range is given by [result rangeAtIndex:1], the second by [result rangeAtIndex:2]. Sending a result the rangeAtIndex: message and passing 0 is equivalent to [result range].
If the result returned is non-nil, then [result range] will always be a valid range, so it is not necessary to compare it against {NSNotFound, 0}. However, for some regular expressions (though not the example pattern) some capture groups may or may not participate in a given match. If a given capture group does not participate in a given match, then [result rangeAtIndex:idx] will return {NSNotFound, 0}.
NSRange rangeOfFirstMatch = [regex rangeOfFirstMatchInString:string options:0 range:NSMakeRange(0, [string length])]; |
if (!NSEqualRanges(rangeOfFirstMatch, NSMakeRange(NSNotFound, 0))) { |
NSString *substringForFirstMatch = [string substringWithRange:rangeOfFirstMatch]; |
} |
The firstMatchInString:options:range: returns only the first match.
NSArray *matches = [regex matchesInString:string |
options:0 |
range:NSMakeRange(0, [string length])]; |
for (NSTextCheckingResult *match in matches) { |
NSRange matchRange = [match range]; |
NSRange firstHalfRange = [match rangeAtIndex:1]; |
NSRange secondHalfRange = [match rangeAtIndex:2]; |
} |
The matchesInString:options:range: method is similar to firstMatchInString:options:range: but it returns all the matching results.
NSTextCheckingResult *match = [regex firstMatchInString:string |
options:0 |
range:NSMakeRange(0, [string length])]; |
if (match) { |
NSRange matchRange = [match range]; |
NSRange firstHalfRange = [match rangeAtIndex:1]; |
NSRange secondHalfRange = [match rangeAtIndex:2]; |
} |
} |
The Block enumeration method enumerateMatchesInString:options:range:usingBlock: is the most general and flexible of the matching methods of NSRegularExpression. It allows you to iterate through matches in a string, performing arbitrary actions on each as specified by the code in the Block and to stop partway through if desired. In the following example case, the iteration is stopped after a certain number of matches have been found.
If neither of the special options NSMatchingReportProgress or NSMatchingReportCompletion is specified, then the result argument to the Block is guaranteed to be non-nil, and as mentioned before, it is guaranteed to have a valid overall range. See “NSMatchingOptions” for the significance of NSMatchingReportProgress or NSMatchingReportCompletion.
__block NSUInteger count = 0; |
[regex enumerateMatchesInString:string options:0 range:NSMakeRange(0, [string length]) usingBlock:^(NSTextCheckingResult *match, NSMatchingFlags flags, BOOL *stop){ |
NSRange matchRange = [match range]; |
NSRange firstHalfRange = [match rangeAtIndex:1]; |
NSRange secondHalfRange = [match rangeAtIndex:2]; |
if (++count >= 100) *stop = YES; |
}]; |
NSRegularExpression also provides simple methods for performing find-and-replace operations on a string. The following example returns a modified copy, but there is a corresponding method for modifying a mutable string in place. The template specifies what is to be used to replace each match, with $0 representing the contents of the overall matched range, $1 representing the contents of the first capture group, and so on. In this case, the template reverses the two letters of the word.
NSString *modifiedString = [regex stringByReplacingMatchesInString:string |
options:0 |
range:NSMakeRange(0, [string length]) |
withTemplate:@"$2$1"]; |
Concurrency and Thread Safety
NSRegularExpression is designed to be immutable and thread safe, so that a single instance can be used in matching operations on multiple threads at once. However, the string on which it is operating should not be mutated during the course of a matching operation, whether from another thread or from within the Block used in the iteration.
Regular Expression Syntax
The following tables describe the character expressions used by the regular expression to match patterns within a string, the pattern operators that specify how many times a pattern is matched and additional matching restrictions, and the last table specifies flags that can be included in the regular expression pattern that specify search behavior over multiple lines (these flags can also be specified using the “NSRegularExpressionOptions” option flags.
Regular Expression Metacharacters
Table 1 describe the character sequences used to match characters within a string.
Character Expression | Description |
|---|---|
| Match a BELL, |
| Match at the beginning of the input. Differs from |
| Match if the current position is a word boundary. Boundaries occur at the transitions between word ( |
| Match a BACKSPACE, |
| Match if the current position is not a word boundary. |
| Match a |
| Match any character with the Unicode General Category of Nd (Number, Decimal Digit.) |
| Match any character that is not a decimal digit. |
| Match an |
| Terminates a |
| Match a FORM FEED, |
| Match if the current position is at the end of the previous match. |
| Match a |
| Match the named character. |
| Match any character with the specified Unicode Property. |
| Match any character not having the specified Unicode Property. |
| Quotes all following characters until |
| Match a CARRIAGE RETURN, \u000D. |
| Match a white space character. White space is defined as [\t\n\f\r\p{Z}]. |
| Match a non-white space character. |
| Match a HORIZONTAL TABULATION, |
| Match the character with the hex value hhhh. |
| Match the character with the hex value hhhhhhhh. Exactly eight hex digits must be provided, even though the largest Unicode code point is |
| Match a word character. Word characters are [\p{Ll}\p{Lu}\p{Lt}\p{Lo}\p{Nd}]. |
| Match a non-word character. |
| Match the character with hex value hhhh. From one to six hex digits may be supplied. |
| Match the character with two digit hex value hh. |
| Match a Grapheme Cluster. |
| Match if the current position is at the end of input, but before the final line terminator, if one exists. |
| Match if the current position is at the end of input. |
| Back Reference. Match whatever the nth capturing group matched. n must be a number |
| Match an Octal character. ooo is from one to three octal digits. |
| Match any one character from the pattern. |
| Match any character. See also |
| Match at the beginning of a line. See also |
| Match at the end of a line. See also |
| Quotes the following character. Characters that must be quoted to be treated as literals are |
Regular Expression Operators
Table 2 defines the regular expression operators.
Operator | Description |
|---|---|
| Alternation. A |
| Match |
| Match |
| Match zero or one times. Prefer one. |
| Match exactly n times. |
| Match at least n times. Match as many times as possible. |
| Match between n and m times. Match as many times as possible, but not more than m. |
| Match |
| Match 1 or more times. Match as few times as possible. |
| Match zero or one times. Prefer zero. |
| Match exactly n times. |
| Match at least n times, but no more than required for an overall pattern match. |
| Match between n and m times. Match as few times as possible, but not less than n. |
| Match 0 or more times. Match as many times as possible when first encountered, do not retry with fewer even if overall match fails (Possessive Match). |
| Match 1 or more times. Possessive match. |
| Match zero or one times. Possessive match. |
| Match exactly n times. |
| Match at least n times. Possessive Match. |
| Match between n and m times. Possessive Match. |
| Capturing parentheses. Range of input that matched the parenthesized subexpression is available after the match. |
| Non-capturing parentheses. Groups the included pattern, but does not provide capturing of matching text. Somewhat more efficient than capturing parentheses. |
| Atomic-match parentheses. First match of the parenthesized subexpression is the only one tried; if it does not lead to an overall pattern match, back up the search for a match to a position before the " |
| Free-format comment |
| Look-ahead assertion. True if the parenthesized pattern matches at the current input position, but does not advance the input position. |
| Negative look-ahead assertion. True if the parenthesized pattern does not match at the current input position. Does not advance the input position. |
(?<= ... ) | Look-behind assertion. True if the parenthesized pattern matches text preceding the current input position, with the last character of the match being the input character just before the current position. Does not alter the input position. The length of possible strings matched by the look-behind pattern must not be unbounded (no * or + operators.) |
| Negative Look-behind assertion. True if the parenthesized pattern does not match text preceding the current input position, with the last character of the match being the input character just before the current position. Does not alter the input position. The length of possible strings matched by the look-behind pattern must not be unbounded (no * or + operators.) |
| Flag settings. Evaluate the parenthesized expression with the specified flags enabled or -disabled. The flags are defined in “Flag Options.” |
| Flag settings. Change the flag settings. Changes apply to the portion of the pattern following the setting. For example, (?i) changes to a case insensitive match.The flags are defined in “Flag Options.” |
Template Matching Format
The NSRegularExpression class provides find-and-replace methods for both immutable and mutable strings using the technique of template matching. Table 3 describes the syntax.
Character | Descriptions |
|---|---|
| The text of capture group n will be substituted for $n. n must be |
| Treat the following character as a literal, suppressing any special meaning. Backslash escaping in substitution text is only required for '$' and '\', but may be used on any other character without bad effects. |
The replacement string is treated as a template, with $0 being replaced by the contents of the matched range, $1 by the contents of the first capture group, and so on. Additional digits beyond the maximum required to represent the number of capture groups will be treated as ordinary characters, as will a $ not followed by digits. Backslash will escape both $ and \.
Flag Options
The following flags control various aspects of regular expression matching. These flag values may be specified within the pattern using the (?ismx-ismx) pattern options. Equivalent behaviors can be specified for the entire pattern when an NSRegularExpression is initialized, using the “NSRegularExpressionOptions” option flags.
Flag (Pattern) | Description |
|---|---|
i | If set, matching will take place in a case-insensitive manner. |
x | If set, allow use of white space and #comments within patterns |
s | If set, a " |
m | Control the behavior of " |
Para | Controls the behavior of |
ICU License
Table 1, Table 2, Table 3, Table 4 are reproduced from the ICU User Guide, Copyright (c) 2000 - 2009 IBM and Others, which are licensed under the following terms:
COPYRIGHT AND PERMISSION NOTICE
Copyright (c) 1995-2009 International Business Machines Corporation and others. All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, provided that the above copyright notice(s) and this permission notice appear in all copies of the Software and that both the above copyright notice(s) and this permission notice appear in supporting documentation.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder.
All trademarks and registered trademarks mentioned herein are the property of their respective owners.
Tasks
Creating Regular Expressions
Getting the Regular Expression and Options
-
patternproperty -
optionsproperty -
numberOfCaptureGroupsproperty
Searching Strings Using Regular Expressions
-
– numberOfMatchesInString:options:range: -
– enumerateMatchesInString:options:range:usingBlock: -
– matchesInString:options:range: -
– firstMatchInString:options:range: -
– rangeOfFirstMatchInString:options:range:
Replacing Strings Using Regular Expressions
-
– replaceMatchesInString:options:range:withTemplate: -
– stringByReplacingMatchesInString:options:range:withTemplate:
Escaping Characters in a String
Custom Replace Functionality
Properties
numberOfCaptureGroups
Returns the number of capture groups in the regular expression. (read-only)
Discussion
A capture group consists of each possible match within a regular expression. Each capture group can then be used in a replacement template to insert that value into a replacement string.
This value puts a limit on the values of n for $n in templates, and it determines the number of ranges in the returned NSTextCheckingResult instances returned in the match... methods.
An exception will be generated if you attempt to access a result with an index value exceeding numberOfCaptureGroups-1.
Availability
- Available in iOS 4.0 and later.
Declared In
NSRegularExpression.hoptions
Returns the options used when the regular expression option was created. (read-only)
Discussion
The options property specifies aspects of the regular expression matching that are always used when matching the regular expression. For example, if the expression is case sensitive, allows comments, ignores metacharacters, etc.. See “NSRegularExpressionOptions” for a complete discussion of the possible constants and their meanings.
Availability
- Available in iOS 4.0 and later.
Declared In
NSRegularExpression.hpattern
Returns the regular expression pattern. (read-only)
Availability
- Available in iOS 4.0 and later.
Declared In
NSRegularExpression.hClass Methods
escapedPatternForString:
Returns a string by adding backslash escapes as necessary to protect any characters that would match as pattern metacharacters.
Parameters
- string
The string.
Return Value
The escaped string.
Discussion
Returns a string by adding backslash escapes as necessary to the given string, to escape any characters that would otherwise be treated as pattern metacharacters.
See “Flag Options” for the format of template.
Availability
- Available in iOS 4.0 and later.
Declared In
NSRegularExpression.hescapedTemplateForString:
Returns a template string by adding backslash escapes as necessary to protect any characters that would match as pattern metacharacters.
Parameters
- string
The template string.
Return Value
The escaped template string.
Discussion
Returns a string by adding backslash escapes as necessary to the given string, to escape any characters that would otherwise be treated as pattern metacharacters.
See “Flag Options” for the format of template.
Availability
- Available in iOS 4.0 and later.
Declared In
NSRegularExpression.hregularExpressionWithPattern:options:error:
Creates an NSRegularExpression instance with the specified regular expression pattern and options.
Parameters
- pattern
The regular expression pattern to compile.
- options
The matching options. See “NSRegularExpressionOptions” for possible values. The values can be combined using the C-bitwise
ORoperator.- error
An out value that returns any error encountered during initialization. Returns
nilif the regular expression pattern is invalid.
Return Value
An instance of NSRegularExpression for the specified regular expression and options.
Availability
- Available in iOS 4.0 and later.
See Also
Declared In
NSRegularExpression.hInstance Methods
enumerateMatchesInString:options:range:usingBlock:
Enumerates the string allowing the Block to handle each regular expression match.
Parameters
- string
The string.
- options
The matching options to report. See “NSMatchingOptions” for the supported values.
- range
The range of the string to test.
- block
The Block enumerates the matches of the regular expression in the string..
The block takes three arguments:
- result
An
NSTextCheckingResultspecifying the match. This result gives the overall matched range via itsrangeproperty, and the range of each individual capture group via itsrangeAtIndex:method. The range {NSNotFound, 0} is returned if one of the capture groups did not participate in this particular match.- flags
The current state of the matching progress. See “NSMatchingFlags” for the possible values.
- stop
A reference to a Boolean value. The Block can set the value to
YESto stop further processing of the array. The stop argument is an out-only argument. You should only ever set this Boolean toYESwithin the Block.
The Block returns void.
Discussion
This method is the fundamental matching method for regular expressions and is suitable for overriding by subclassers. There are additional convenience methods for returning all the matches as an array, the total number of matches, the first match, and the range of the first match.
By default, the Block iterator method calls the Block precisely once for each match, with a non-nil result and the appropriate flags. The client may then stop the operation by setting the contents of stop to YES. The stop argument is an out-only argument. You should only ever set this Boolean to YES within the Block.
If the NSMatchingReportProgress matching option is specified, the Block will also be called periodically during long-running match operations, with nil result and NSMatchingProgress matching flag set in the Block’s flags parameter, at which point the client may again stop the operation by setting the contents of stop to YES.
If the NSMatchingReportCompletion matching option is specified, the Block object will be called once after matching is complete, with nil result and the NSMatchingCompleted matching flag is set in the flags passed to the Block, plus any additional relevant “NSMatchingFlags” from among NSMatchingHitEnd, NSMatchingRequiredEnd, or NSMatchingInternalError.
NSMatchingProgress and NSMatchingCompleted matching flags have no effect for methods other than this method.
The NSMatchingHitEnd matching flag is set in the flags passed to the Block if the current match operation reached the end of the search range. The NSMatchingRequiredEnd matching flag is set in the flags passed to the Block if the current match depended on the location of the end of the search range.
The “NSMatchingFlags” matching flag is set in the flags passed to the block if matching failed due to an internal error (such as an expression requiring exponential memory allocations) without examining the entire search range.
The NSMatchingAnchored, NSMatchingWithTransparentBounds, and NSMatchingWithoutAnchoringBounds regular expression options, specified in the options property specified when the regular expression instance is created, can apply to any match or replace method.
If NSMatchingAnchored matching option is specified, matches are limited to those at the start of the search range.
If NSMatchingWithTransparentBounds matching option is specified, matching may examine parts of the string beyond the bounds of the search range, for purposes such as word boundary detection, lookahead, etc.
If NSMatchingWithoutAnchoringBounds matching option is specified, ^ and $ will not automatically match the beginning and end of the search range, but will still match the beginning and end of the entire string.
NSMatchingWithTransparentBounds and NSMatchingWithoutAnchoringBounds matching options have no effect if the search range covers the entire string.
Availability
- Available in iOS 4.0 and later.
See Also
Declared In
NSRegularExpression.hfirstMatchInString:options:range:
Returns the first match of the regular expression within the specified range of the string.
Parameters
- string
The string to search.
- options
The matching options to use. See “NSMatchingOptions” for possible values.
- range
The range of the string to search.
Return Value
An NSTextCheckingResult object. This result gives the overall matched range via its range property, and the range of each individual capture group via its rangeAtIndex: method. The range {NSNotFound, 0} is returned if one of the capture groups did not participate in this particular match.
Discussion
This is a convenience method that calls enumerateMatchesInString:options:range:usingBlock:.
Availability
- Available in iOS 4.0 and later.
See Also
Declared In
NSRegularExpression.hinitWithPattern:options:error:
Returns an initialized NSRegularExpression instance with the specified regular expression pattern and options.
Parameters
- pattern
The regular expression pattern to compile.
- options
The regular expression options that are applied to the expression during matching. See “NSRegularExpressionOptions” for possible values.
- error
An out value that returns any error encountered during initialization. Returns
nilif the regular expression pattern is invalid.
Return Value
An instance of NSRegularExpression for the specified regular expression and options.
Availability
- Available in iOS 4.0 and later.
Declared In
NSRegularExpression.hmatchesInString:options:range:
Returns an array containing all the matches of the regular expression in the string.
Parameters
- string
The string to search.
- options
The matching options to use. See “NSMatchingOptions” for possible values.
- range
The range of the string to search.
Return Value
An array of NSTextCheckingResult objects. Each result gives the overall matched range via its range property, and the range of each individual capture group via its rangeAtIndex: method. The range {NSNotFound, 0} is returned if one of the capture groups did not participate in this particular match.
Discussion
This is a convenience method that calls enumerateMatchesInString:options:range:usingBlock: passing the appropriate string, options, and range..
Availability
- Available in iOS 4.0 and later.
See Also
Declared In
NSRegularExpression.hnumberOfMatchesInString:options:range:
Returns the number of matches of the regular expression within the specified range of the string.
Parameters
- string
The string to search.
- options
The matching options to use. See “NSMatchingOptions” for possible values.
- range
The range of the string to search.
Return Value
The number of matches of the regular expression.
Discussion
This is a convenience method that calls enumerateMatchesInString:options:range:usingBlock:.
Availability
- Available in iOS 4.0 and later.
See Also
Declared In
NSRegularExpression.hrangeOfFirstMatchInString:options:range:
Returns the range of the first match of the regular expression within the specified range of the string.
Parameters
- string
The string to search.
- options
The matching options to use. See “NSMatchingOptions” for possible values.
- range
The range of the string to search.
Return Value
The range of the first match. Returns {NSNotFound, 0} if no match is found.
Discussion
This is a convenience method that calls enumerateMatchesInString:options:range:usingBlock:.
Availability
- Available in iOS 4.0 and later.
See Also
Declared In
NSRegularExpression.hreplaceMatchesInString:options:range:withTemplate:
Replaces regular expression matches within the mutable string the using the template string.
Parameters
- string
The mutable string to search and replace values within.
- options
The matching options to use. See “NSMatchingOptions” for possible values.
- range
The range of the string to search.
- template
The substitution template used when replacing matching instances.
Return Value
The number of matches.
Discussion
See “Flag Options” for the format of template.
Availability
- Available in iOS 4.0 and later.
Declared In
NSRegularExpression.hreplacementStringForResult:inString:offset:template:
Used to perform template substitution for a single result for clients implementing their own replace functionality.
Parameters
- result
The result of the single match.
- string
The string from which the result was matched.
- offset
The offset to be added to the location of the result in the string.
- template
See “Flag Options” for the format of template.
Return Value
A replacement string.
Discussion
For clients implementing their own replace functionality, this is a method to perform the template substitution for a single result, given the string from which the result was matched, an offset to be added to the location of the result in the string (for example, in cases that modifications to the string moved the result since it was matched), and a replacement template.
This is an advanced method that is used only if you wanted to iterate through a list of matches yourself and do the template replacement for each one, plus maybe some other calculation that you want to do in code, then you would use this at each step.
Availability
- Available in iOS 4.0 and later.
Declared In
NSRegularExpression.hstringByReplacingMatchesInString:options:range:withTemplate:
Returns a new string containing matching regular expressions replaced with the template string.
Parameters
- string
The string to search for values within.
- options
The matching options to use. See “NSMatchingOptions” for possible values.
- range
The range of the string to search.
- template
The substitution template used when replacing matching instances.
Return Value
A string with matching regular expressions replaced by the template string.
Discussion
See “Flag Options” for the format of template.
Availability
- Available in iOS 4.0 and later.
Declared In
NSRegularExpression.hConstants
NSRegularExpressionOptions
These constants define the regular expression options. These constants are used by the property options, regularExpressionWithPattern:options:error:, and initWithPattern:options:error:.
enum {
NSRegularExpressionCaseInsensitive = 1 << 0,
NSRegularExpressionAllowCommentsAndWhitespace = 1 << 1,
NSRegularExpressionIgnoreMetacharacters = 1 << 2,
NSRegularExpressionDotMatchesLineSeparators = 1 << 3,
NSRegularExpressionAnchorsMatchLines = 1 << 4,
NSRegularExpressionUseUnixLineSeparators = 1 << 5,
NSRegularExpressionUseUnicodeWordBoundaries = 1 << 6
};
typedef NSUInteger NSRegularExpressionOptions;
Constants
NSRegularExpressionCaseInsensitiveMatch letters in the pattern independent of case.
Available in iOS 4.0 and later.
Declared in
NSRegularExpression.h.NSRegularExpressionAllowCommentsAndWhitespaceIgnore whitespace and #-prefixed comments in the pattern.
Available in iOS 4.0 and later.
Declared in
NSRegularExpression.h.NSRegularExpressionIgnoreMetacharactersTreat the entire pattern as a literal string.
Available in iOS 4.0 and later.
Declared in
NSRegularExpression.h.NSRegularExpressionDotMatchesLineSeparatorsAllow
.to match any character, including line separators.Available in iOS 4.0 and later.
Declared in
NSRegularExpression.h.NSRegularExpressionAnchorsMatchLinesAllow
^and$to match the start and end of lines.Available in iOS 4.0 and later.
Declared in
NSRegularExpression.h.NSRegularExpressionUseUnixLineSeparatorsTreat only
\nas a line separator (otherwise, all standard line separators are used).Available in iOS 4.0 and later.
Declared in
NSRegularExpression.h.NSRegularExpressionUseUnicodeWordBoundariesUse Unicode
TR#29to specify word boundaries (otherwise, traditional regular expression word boundaries are used).Available in iOS 4.0 and later.
Declared in
NSRegularExpression.h.
NSMatchingFlags
Set by the Block as the matching progresses, completes, or fails. Used by the method enumerateMatchesInString:options:range:usingBlock:.
enum {
NSMatchingProgress = 1 << 0,
NSMatchingCompleted = 1 << 1,
NSMatchingHitEnd = 1 << 2,
NSMatchingRequiredEnd = 1 << 3,
NSMatchingInternalError = 1 << 4
};
typedef NSUInteger NSMatchingFlags;
Constants
NSMatchingProgressSet when the Block is called to report progress during a long-running match operation.
Available in iOS 4.0 and later.
Declared in
NSRegularExpression.h.NSMatchingCompletedSet when the Block is called after matching has completed.
Available in iOS 4.0 and later.
Declared in
NSRegularExpression.h.NSMatchingHitEndSet when the current match operation reached the end of the search range.
Available in iOS 4.0 and later.
Declared in
NSRegularExpression.h.NSMatchingRequiredEndSet when the current match depended on the location of the end of the search range.
Available in iOS 4.0 and later.
Declared in
NSRegularExpression.h.NSMatchingInternalErrorSet when matching failed due to an internal error.
Available in iOS 4.0 and later.
Declared in
NSRegularExpression.h.
NSMatchingOptions
The matching options constants specify the reporting, completion and matching rules to the expression matching methods. These constants are used by all methods that search for, or replace values, using a regular expression.
enum {
NSMatchingReportProgress = 1 << 0,
NSMatchingReportCompletion = 1 << 1,
NSMatchingAnchored = 1 << 2,
NSMatchingWithTransparentBounds = 1 << 3,
NSMatchingWithoutAnchoringBounds = 1 << 4
};
typedef NSUInteger NSMatchingOptions;
Constants
NSMatchingReportProgressCall the Block periodically during long-running match operations. This option has no effect for methods other than
enumerateMatchesInString:options:range:usingBlock:. SeeenumerateMatchesInString:options:range:usingBlock:for a description of the constant in context.Available in iOS 4.0 and later.
Declared in
NSRegularExpression.h.NSMatchingReportCompletionCall the Block once after the completion of any matching. This option has no effect for methods other than
enumerateMatchesInString:options:range:usingBlock:. SeeenumerateMatchesInString:options:range:usingBlock:for a description of the constant in context.Available in iOS 4.0 and later.
Declared in
NSRegularExpression.h.NSMatchingAnchoredSpecifies that matches are limited to those at the start of the search range. See
enumerateMatchesInString:options:range:usingBlock:for a description of the constant in context.Available in iOS 4.0 and later.
Declared in
NSRegularExpression.h.NSMatchingWithTransparentBoundsSpecifies that matching may examine parts of the string beyond the bounds of the search range, for purposes such as word boundary detection, lookahead, etc. This constant has no effect if the search range contains the entire string. See
enumerateMatchesInString:options:range:usingBlock:for a description of the constant in context.Available in iOS 4.0 and later.
Declared in
NSRegularExpression.h.NSMatchingWithoutAnchoringBoundsSpecifies that
^and$will not automatically match the beginning and end of the search range, but will still match the beginning and end of the entire string. This constant has no effect if the search range contains the entire string. SeeenumerateMatchesInString:options:range:usingBlock:for a description of the constant in context.Available in iOS 4.0 and later.
Declared in
NSRegularExpression.h.
© 2010 Apple Inc. All Rights Reserved. (Last updated: 2010-05-20)