當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。