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
Regex similar to ($|^)\w+ will always return false. Regex similar to ($*)*\w+ won't return an empty capture (or won't always return the right result, I don't remember anymore). This was fixed in nim-regex, see nitely/nim-regex#79 and nitely/nim-regex#84
The text was updated successfully, but these errors were encountered:
Regex similar to
($|^)\w+
will always return false. Regex similar to($*)*\w+
won't return an empty capture (or won't always return the right result, I don't remember anymore). This was fixed in nim-regex, see nitely/nim-regex#79 and nitely/nim-regex#84The text was updated successfully, but these errors were encountered: