mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-04 04:02:41 +00:00
Stdlib: nre: Convenience proc `contains` added.
This commit is contained in:
@@ -566,6 +566,16 @@ proc findAll*(str: string, pattern: Regex, start = 0, endpos = int.high): seq[st
|
||||
for match in str.findIter(pattern, start, endpos):
|
||||
result.add(match.match)
|
||||
|
||||
proc contains*(str: string, pattern: Regex, start = 0, endpos = int.high): bool =
|
||||
## Determine if the string contains the given pattern between the end and
|
||||
## start positions:
|
||||
## - "abc".contains(re"bc") == true
|
||||
## - "abc".contains(re"cd") == false
|
||||
## - "abc".contains(re"a", start = 1) == false
|
||||
##
|
||||
## Same as ``isSome(str.find(pattern, start, endpos))``.
|
||||
return isSome(str.find(pattern, start, endpos))
|
||||
|
||||
proc split*(str: string, pattern: Regex, maxSplit = -1, start = 0): seq[string] =
|
||||
## Splits the string with the given regex. This works according to the
|
||||
## rules that Perl and Javascript use:
|
||||
|
||||
Reference in New Issue
Block a user