在Python中使用函数作为re.sub的参数?

Abh*_*tia 3 python regex string replace hashtag

我正在编写一个程序来分割主题标签中包含的单词。

例如我想分割主题标签:

#Whatthehello #goback
Run Code Online (Sandbox Code Playgroud)

进入:

What the hello go back
Run Code Online (Sandbox Code Playgroud)

re.sub我在使用函数参数时遇到了麻烦。

我写的代码是:

import re,pdb

def func_replace(each_func):
    i=0
    wordsineach_func=[] 
    while len(each_func) >0:
        i=i+1
        word_found=longest_word(each_func)
        if len(word_found)>0:
            wordsineach_func.append(word_found)
            each_func=each_func.replace(word_found,"")
    return ' '.join(wordsineach_func)

def longest_word(phrase):
    phrase_length=len(phrase)
    words_found=[];index=0
    outerstring=""
    while index < phrase_length:
        outerstring=outerstring+phrase[index]
        index=index+1
        if outerstring in words or outerstring.lower() in words:
            words_found.append(outerstring)
    if len(words_found) ==0:
        words_found.append(phrase)
    return max(words_found, key=len)        

words=[]
# The file corncob_lowercase.txt contains a list of dictionary words
with open('corncob_lowercase.txt') as f:
    read_words=f.readlines()

for read_word in read_words:
    words.append(read_word.replace("\n","").replace("\r",""))
Run Code Online (Sandbox Code Playgroud)

例如,当使用这些函数时,如下所示:

s="#Whatthehello #goback"

#checking if the function is able to segment words
hashtags=re.findall(r"#(\w+)", s)
print func_replace(hashtags[0])

# using the function for re.sub
print re.sub(r"#(\w+)", lambda m: func_replace(m.group()), s)
Run Code Online (Sandbox Code Playgroud)

我得到的输出是:

import re,pdb

def func_replace(each_func):
    i=0
    wordsineach_func=[] 
    while len(each_func) >0:
        i=i+1
        word_found=longest_word(each_func)
        if len(word_found)>0:
            wordsineach_func.append(word_found)
            each_func=each_func.replace(word_found,"")
    return ' '.join(wordsineach_func)

def longest_word(phrase):
    phrase_length=len(phrase)
    words_found=[];index=0
    outerstring=""
    while index < phrase_length:
        outerstring=outerstring+phrase[index]
        index=index+1
        if outerstring in words or outerstring.lower() in words:
            words_found.append(outerstring)
    if len(words_found) ==0:
        words_found.append(phrase)
    return max(words_found, key=len)        

words=[]
# The file corncob_lowercase.txt contains a list of dictionary words
with open('corncob_lowercase.txt') as f:
    read_words=f.readlines()

for read_word in read_words:
    words.append(read_word.replace("\n","").replace("\r",""))
Run Code Online (Sandbox Code Playgroud)

这不是我预期的输出:

s="#Whatthehello #goback"

#checking if the function is able to segment words
hashtags=re.findall(r"#(\w+)", s)
print func_replace(hashtags[0])

# using the function for re.sub
print re.sub(r"#(\w+)", lambda m: func_replace(m.group()), s)
Run Code Online (Sandbox Code Playgroud)

为什么会发生这种情况?特别是我使用了这个答案的建议,但我不明白这段代码出了什么问题。

unu*_*tbu 5

请注意,m.group()返回匹配的整个字符串,无论它是否是捕获组的一部分:

In [19]: m = re.search(r"#(\w+)", s)

In [20]: m.group()
Out[20]: '#Whatthehello'
Run Code Online (Sandbox Code Playgroud)

m.group(0)还返回整个匹配:

In [23]: m.group(0)
Out[23]: '#Whatthehello'
Run Code Online (Sandbox Code Playgroud)

相反,m.groups()返回所有捕获组:

In [21]: m.groups()
Out[21]: ('Whatthehello',)
Run Code Online (Sandbox Code Playgroud)

m.group(1)返回第一个捕获组:

In [22]: m.group(1)
Out[22]: 'Whatthehello'
Run Code Online (Sandbox Code Playgroud)

所以你的代码中的问题源于m.groupin的使用

re.sub(r"#(\w+)", lambda m: func_replace(m.group()), s)
Run Code Online (Sandbox Code Playgroud)

自从

In [7]: re.search(r"#(\w+)", s).group()
Out[7]: '#Whatthehello'
Run Code Online (Sandbox Code Playgroud)

而如果你使用过.group(1),你会得到

In [24]: re.search(r"#(\w+)", s).group(1)
Out[24]: 'Whatthehello'
Run Code Online (Sandbox Code Playgroud)

前面的内容#使一切变得不同:

In [25]: func_replace('#Whatthehello')
Out[25]: '#Whatthehello'

In [26]: func_replace('Whatthehello')
Out[26]: 'What the hello'
Run Code Online (Sandbox Code Playgroud)

因此,更改m.group()m.group(1)/usr/share/dict/words替换corncob_lowercase.txt

import re

def func_replace(each_func):
    i = 0
    wordsineach_func = []
    while len(each_func) > 0:
        i = i + 1
        word_found = longest_word(each_func)
        if len(word_found) > 0:
            wordsineach_func.append(word_found)
            each_func = each_func.replace(word_found, "")
    return ' '.join(wordsineach_func)


def longest_word(phrase):
    phrase_length = len(phrase)
    words_found = []
    index = 0
    outerstring = ""
    while index < phrase_length:
        outerstring = outerstring + phrase[index]
        index = index + 1
        if outerstring in words or outerstring.lower() in words:
            words_found.append(outerstring)
    if len(words_found) == 0:
        words_found.append(phrase)
    return max(words_found, key=len)

words = []
# corncob_lowercase.txt contains a list of dictionary words
with open('/usr/share/dict/words', 'rb') as f:
    for read_word in f:
        words.append(read_word.strip())
s = "#Whatthehello #goback"
hashtags = re.findall(r"#(\w+)", s)
print func_replace(hashtags[0])
print re.sub(r"#(\w+)", lambda m: func_replace(m.group(1)), s)
Run Code Online (Sandbox Code Playgroud)

印刷

What the hello
What the hello gob a c k
Run Code Online (Sandbox Code Playgroud)

因为,唉,'gob'比 长'go'


调试此问题的一种方法是用lambda常规函数替换该函数,然后添加打印语句:

def foo(m):
    result = func_replace(m.group())
    print(m.group(), result)
    return result

In [35]: re.sub(r"#(\w+)", foo, s)
('#Whatthehello', '#Whatthehello')   <-- This shows you what `m.group()` and `func_replace(m.group())` returns
('#goback', '#goback')
Out[35]: '#Whatthehello #goback'
Run Code Online (Sandbox Code Playgroud)

这会让你的注意力集中在

In [25]: func_replace('#Whatthehello')
Out[25]: '#Whatthehello'
Run Code Online (Sandbox Code Playgroud)

然后你可以与它进行比较

In [26]: func_replace(hashtags[0])
Out[26]: 'What the hello'

In [27]: func_replace('Whatthehello')
Out[27]: 'What the hello'
Run Code Online (Sandbox Code Playgroud)

这会让你问一个问题,如果m.group()返回'#Whatthehello',我需要什么方法返回'Whatthehello'。深入研究文档即可解决问题。