Skip to content

edsnlp.pipelines.misc.dates.parsing

str2int(time)

Converts a string to an integer. Returns None if the string cannot be converted.

PARAMETER DESCRIPTION
time

String representation

TYPE: str

RETURNS DESCRIPTION
int

Integer conversion.

Source code in edsnlp/pipelines/misc/dates/parsing.py
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
def str2int(time: str) -> int:
    """
    Converts a string to an integer. Returns `None` if the string cannot be converted.

    Parameters
    ----------
    time : str
        String representation

    Returns
    -------
    int
        Integer conversion.
    """
    try:
        return int(time)
    except ValueError:
        return None

time2int_factory(patterns)

Factory for a time2int conversion function.

PARAMETER DESCRIPTION
patterns

Dictionary of conversion/pattern.

TYPE: Dict[str, int]

RETURNS DESCRIPTION
Callable[[str], int]

String to integer function.

Source code in edsnlp/pipelines/misc/dates/parsing.py
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
def time2int_factory(patterns: Dict[str, int]) -> Callable[[str], int]:
    """
    Factory for a `time2int` conversion function.

    Parameters
    ----------
    patterns : Dict[str, int]
        Dictionary of conversion/pattern.

    Returns
    -------
    Callable[[str], int]
        String to integer function.
    """

    def time2int(time: str) -> int:
        """
        Converts a string representation to the proper integer,
        iterating over a dictionnary of pattern/conversion.

        Parameters
        ----------
        time : str
            String representation

        Returns
        -------
        int
            Integer conversion
        """
        m = str2int(time)

        if m is not None:
            return m

        for pattern, key in patterns.items():
            if re.match(f"^{pattern}$", time):
                m = key
                break

        return m

    return time2int
Back to top