15.4.20. crate_anon.nlp_manager.regex_func


Copyright (C) 2015-2018 Rudolf Cardinal (rudolf@pobox.com).

This file is part of CRATE.

CRATE is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

CRATE is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with CRATE. If not, see <http://www.gnu.org/licenses/>.


crate_anon.nlp_manager.regex_func.at_start_wb(regex_str: str) → str[source]

With word boundary at start. Beware, though; e.g. “3kg” is reasonable, and this does NOT have a word boundary in.

crate_anon.nlp_manager.regex_func.at_wb_start_end(regex_str: str) → str[source]

Caution using this. Digits do not end a word, so “mm3” will not match if your “mm” group ends in a word boundary.

crate_anon.nlp_manager.regex_func.get_regex_dict_match(text: Union[str, NoneType], regex_to_value_dict: Dict[Pattern[~AnyStr], Any], default: Any = None) → Tuple[bool, Any][source]

Returns (matched, result).