This commit is contained in:
Anatoly Galiulin
2017-02-13 19:35:40 +07:00
committed by Andreas Rumpf
parent ac9c2126e6
commit 279e4b0451
2 changed files with 12 additions and 1 deletions

11
tests/stdlib/tbug5382.nim Normal file
View File

@@ -0,0 +1,11 @@
discard """
output: '''
02
'''
"""
import re
let regexp = re"^\/([0-9]{2})\.html$"
var matches: array[1, string]
discard "/02.html".find(regexp, matches)
echo matches[0]