当前位置: 首页>>代码示例>>Python>>正文


Python string_processing.StringProcessor类代码示例

本文整理汇总了Python中fuzzywuzzy.string_processing.StringProcessor的典型用法代码示例。如果您正苦于以下问题:Python StringProcessor类的具体用法?Python StringProcessor怎么用?Python StringProcessor使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了StringProcessor类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_replace_non_letters_non_numbers_with_whitespace

 def test_replace_non_letters_non_numbers_with_whitespace(self):
     strings = ["new york mets - atlanta braves", "Cães danados", "New York //// Mets $$$", "Ça va?"]
     for string in strings:
         proc_string = StringProcessor.replace_non_letters_non_numbers_with_whitespace(string)
         regex = re.compile(r"(?ui)[\W]")
         for expr in regex.finditer(proc_string):
             self.assertEqual(expr.group(), " ")
开发者ID:hylepo,项目名称:fuzzywuzzy,代码行数:7,代码来源:test_fuzzywuzzy.py

示例2: full_process

def full_process(s, force_ascii=False):
    """Process string by
        -- removing all but letters and numbers
        -- trim whitespace
        -- force to lower case
        if force_ascii == True, force convert to ascii"""

    if force_ascii:
        s = asciidammit(s)
    # Keep only Letters and Numbers (see Unicode docs).
    string_out = StringProcessor.replace_non_letters_non_numbers_with_whitespace(s)
    # Force into lowercase.
    string_out = StringProcessor.to_lower_case(string_out)
    # Remove leading and trailing whitespaces.
    string_out = StringProcessor.strip(string_out)
    return string_out
开发者ID:karimia,项目名称:fuzzywuzzy,代码行数:16,代码来源:utils.py

示例3: test_dont_condense_whitespace

 def test_dont_condense_whitespace(self):
     s1 = "new york mets - atlanta braves"
     s2 = "new york mets atlanta braves"
     p1 = StringProcessor.replace_non_letters_non_numbers_with_whitespace(s1)
     p2 = StringProcessor.replace_non_letters_non_numbers_with_whitespace(s2)
     self.assertNotEqual(p1, p2)
开发者ID:hylepo,项目名称:fuzzywuzzy,代码行数:6,代码来源:test_fuzzywuzzy.py


注:本文中的fuzzywuzzy.string_processing.StringProcessor类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。