Skip to content

edsnlp.pipelines.core.normalizer.utils

replace(text, rep)

Replaces a list of characters in a given text.

PARAMETER DESCRIPTION
text

Text to modify.

TYPE: str

rep

List of (old, new) tuples. old can list multiple characters.

TYPE: List[Tuple[str, str]]

RETURNS DESCRIPTION
str

Processed text.

Source code in edsnlp/pipelines/core/normalizer/utils.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
def replace(
    text: str,
    rep: List[Tuple[str, str]],
) -> str:
    """
    Replaces a list of characters in a given text.

    Parameters
    ----------
    text : str
        Text to modify.
    rep : List[Tuple[str, str]]
        List of `(old, new)` tuples. `old` can list multiple characters.

    Returns
    -------
    str
        Processed text.
    """

    for olds, new in rep:
        for old in olds:
            text = text.replace(old, new)
    return text
Back to top