Except in Set
Open
enhancement
good first issue
hacktoberfest
- Dominant language
- Python
- Stars
- 8
- Forks
- 10
- PR merge metrics
- No merged PRs in 30d
Description
```py
from mre import Set
# Example of how it can work 1
print(Set("abc", except=True))
# Example of how it can work 2
print(Set("abc").except())
# Example of how it can work 3
print(Set("abc").except(True))
# All outputs: [^abc]
# Regex without exception: [abc]
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.