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
4 5 6 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 |
|