Regex
Regex copied to clipboard
A pure Swift NFA implementation of a regular expression engine
Results
2
Regex issues
Sort by
recently updated
recently updated
newest added
Hello, ``` 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. ```...
Regex works fine for most tasks, but locked my machine when finding matches in a 50MB string. Is there a way around this? I was trying to use it in...