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
let myRegex = try Regex("/some/([\\w\\d\\s,]+)/ig")
caused:
error: Execution was interrupted, reason: EXC_BAD_INSTRUCTION (code=EXC_I386_INVOP, subcode=0x0). The process has been returned to the state before expression evaluation.
when call:
myRegex.match("/some/some123 some")
In the Python this regex pattern:
r"/some/([\w\d\s,]+)"
work perfect
The text was updated successfully, but these errors were encountered:
regex: this
swift -v: Apple Swift version 4.2.1 (swiftlang-1000.11.42 clang-1000.11.45.1), Target: x86_64-apple-darwin18.2.0
swiftc -v: Apple Swift version 4.2.1 (swiftlang-1000.11.42 clang-1000.11.45.1), Target: x86_64-apple-darwin18.2.0
xcode: Version 10.1 (10B61)
Hello,
caused:
when call:
In the Python this regex pattern:
work perfect
The text was updated successfully, but these errors were encountered: