You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- parameter flags: NSRegularExpressionOptions value
51
51
52
-
:returns: Corresponding MatchObject instance. Return nil if no position in the string matches the pattern or pattern is invalid; note that this is different from finding a zero-length match at some point in the string.
52
+
- returns: Corresponding MatchObject instance. Return nil if no position in the string matches the pattern or pattern is invalid; note that this is different from finding a zero-length match at some point in the string.
- parameter flags: NSRegularExpressionOptions value
66
66
67
-
:returns: Corresponding MatchObject instance. Return nil if the string does not match the pattern or pattern is invalid; note that this is different from a zero-length match.
67
+
- returns: Corresponding MatchObject instance. Return nil if the string does not match the pattern or pattern is invalid; note that this is different from a zero-length match.
See https://docs.python.org/2/library/re.html#re.RegexObject.search
208
208
209
-
:param: string string to be searched
210
-
:param: pos position in string where the search is to start, defaults to 0
211
-
:param: endpos position in string where the search it to end (non-inclusive), defaults to nil, meaning the end of the string. If endpos is less than pos, no match will be found.
212
-
:param: options NSMatchOptions value
209
+
- parameter string: string to be searched
210
+
- parameter pos: position in string where the search is to start, defaults to 0
211
+
- parameter endpos: position in string where the search it to end (non-inclusive), defaults to nil, meaning the end of the string. If endpos is less than pos, no match will be found.
212
+
- parameter options: NSMatchOptions value
213
213
214
-
:returns: search result as MatchObject instance if a match is found, otherwise return nil
214
+
- returns: search result as MatchObject instance if a match is found, otherwise return nil
See https://docs.python.org/2/library/re.html#re.RegexObject.match
235
235
236
-
:param: string string to be matched
237
-
:param: pos position in string where the search is to start, defaults to 0
238
-
:param: endpos position in string where the search it to end (non-inclusive), defaults to nil, meaning the end of the string. If endpos is less than pos, no match will be found.
236
+
- parameter string: string to be matched
237
+
- parameter pos: position in string where the search is to start, defaults to 0
238
+
- parameter endpos: position in string where the search it to end (non-inclusive), defaults to nil, meaning the end of the string. If endpos is less than pos, no match will be found.
239
239
240
-
:returns: match result as MatchObject instance if a match is found, otherwise return nil
240
+
- returns: match result as MatchObject instance if a match is found, otherwise return nil
See https://docs.python.org/2/library/re.html#re.RegexObject.findall
293
293
294
-
:param: string string to be matched
295
-
:param: pos position in string where the search is to start, defaults to 0
296
-
:param: endpos position in string where the search it to end (non-inclusive), defaults to nil, meaning the end of the string. If endpos is less than pos, no match will be found.
294
+
- parameter string: string to be matched
295
+
- parameter pos: position in string where the search is to start, defaults to 0
296
+
- parameter endpos: position in string where the search it to end (non-inclusive), defaults to nil, meaning the end of the string. If endpos is less than pos, no match will be found.
:param: pos position in string where the search is to start, defaults to 0
311
-
:param: endpos position in string where the search it to end (non-inclusive), defaults to nil, meaning the end of the string. If endpos is less than pos, no match will be found.
309
+
- parameter string: string to be matched
310
+
- parameter pos: position in string where the search is to start, defaults to 0
311
+
- parameter endpos: position in string where the search it to end (non-inclusive), defaults to nil, meaning the end of the string. If endpos is less than pos, no match will be found.
312
312
313
-
:returns: Array of match results as MatchObject instances
313
+
- returns: Array of match results as MatchObject instances
0 commit comments