edsnlp.utils.regex
make_pattern(patterns, with_breaks=False, name=None)
Create OR pattern from a list of patterns.
PARAMETER | DESCRIPTION |
---|---|
patterns |
List of patterns to merge.
TYPE:
|
with_breaks |
Whether to add breaks (
TYPE:
|
name |
Name of the group, using regex
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
str
|
Merged pattern. |
Source code in edsnlp/utils/regex.py
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
|
compile_regex(reg)
This function tries to compile reg
using the re
module, and
fallbacks to the regex
module that is more permissive.
PARAMETER | DESCRIPTION |
---|---|
reg |
|
RETURNS | DESCRIPTION |
---|---|
Union[re.Pattern, regex.Pattern]
|
Source code in edsnlp/utils/regex.py
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
|