在python中优化字符串替换

时间:2018-04-04 19:12:39

标签: python string optimization

我有一个简单的问题。我有一些文本文件,其中的单词已在行尾分割(连字符号)。像这样:

toward an emotionless evalu-
ation of objectively gained

我想摆脱连字并再次加入这些词。这可以使用replace()函数简单快速地完成。但是在某些情况下,连字符后面会有一些额外的换行符。像这样:

end up as a first rate con-


tribution, but that was not

我只是切换到正则表达式并使用了replace(),而不是堆积多次调用re.sub('\-\n+', '', text)

def replace_hyphens(text):
    return re.sub('\-\n+', '', text)

这很有效,但我想知道如何用直接用Python编码的函数来实现相同的结果。这就是我想出的:

def join_hyphens(text):
    processed = ''
    i = 0
    while i < len(text):
        if text[i] == '-':
            while text[i+1] == '\n':
                i += 1
            i += 1
        processed += text[i]
        i += 1
    return processed

但当然,与正则表达式相比,表现非常糟糕。如果我在一个相当长的字符串上对它进行超过100次迭代的时间就是结果。

join_hyphens done in 2.398ms
replace_hyphens done in 0.021ms

在使用本机Python代码的同时提高性能的最佳方法是什么?

编辑:按照建议切换到列表可以显着提高性能,但与正则表达式相比仍然表现不佳:

def join_hyphens(text):
    processed = []
    i = 0
    while i < len(text):
        if text[i] == '-':
            while text[i+1] == '\n':
                i += 1
            i += 1
        processed.append(text[i])
        i += 1
    return ''.join(processed)

给出:

    join_hyphens done in 1.769ms
    replace_hyphens done in 0.020ms

6 个答案:

答案 0 :(得分:5)

processed += text[i]
processed变大时,

非常慢。字符串是不可变的,因此就地添加只是一种幻觉。

有几个alternatives,一个简单的构建列表然后使用str.join

def join_hyphens(text):
    processed = []
    i = 0
    while i < len(text):
        if text[i] == '-':
            while text[i+1] == '\n':
                i += 1
            i += 1
        processed.append(text[i])
        i += 1
    return "".join(processed)

join预先计算字符串所需的空间,分配(一次性)并加入字符串。一切都是使用python的编译内核完成的,所以它非常快。

(不幸的是,代码的本地python循环使程序变慢,正则表达式使用编译代码而没有本机python循环,这解释得快得多。str.join在其他上下文中非常有用,但目前的问题可以通过其他几个答案更快地解决)

答案 1 :(得分:5)

派对有点晚了但无论如何...... Python标准库中的所有东西都被认为是原生Python ,因为它应该可以在任何Python系统上使用,所以它也包括re模块。

但是,如果你坚持单独使用Python,而不是逐个迭代字符,你可以使用本机文本搜索来跳过大量文本。这应该可以提高性能,在某些情况下甚至会超过regex。当然,通过"".join()进行字符串连接也更受欢迎,正如其他人所说:

def join_hyphens(text):
    pieces = []  # a simple chunk buffer store
    head = 0  # our current search head
    finder = text.find  # optimize lookup for str.find
    add_piece = pieces.append  # optimize lookup for list.append
    while True:
        index = finder("-\n", head)  # find the next hyphen
        if index >= 0:  # check if a hyphen was found
            add_piece(text[head:index])  # add the current chunk
            head = index + 2  # move the search head for after the find
            while text[head] == "\n":  # skip new line characters
                head += 1
        else:
            add_piece(text[head:])  # add the last chunk
            break
    return "".join(pieces)  # join the chunks and return them

并测试它:

text = """end up as a first rate con-


tribution, but that was not"""

print(join_hyphens(text))  # end up as a first rate contribution, but that was not

答案 2 :(得分:4)

使用+ =构建字符串使其成为O(n ** 2)。制作一个片段列表并以O(n)加入它们,并且对于任何实质文本都更快。

def join_hyphens(text):
    processed = []
    i = 0
    while i < len(text):
        if text[i] == '-':
            while text[i+1] == '\n':
                i += 1
            i += 1
        processed.append(text[i])
        i += 1
    return ''.join(processed)

编辑:没有样品,未经测试。但这是一个标准的习语。 EDIT2:更正语法错误

答案 3 :(得分:3)

尝试:

def join_hyphens(text):
    while "-\n\n" in text:
        text = text.replace("-\n\n", "-\n")

    return text.replace("-\n", "")

这仍然会创建多个字符串,但是少于你的方法,因为它会创建一个字符串副本,每次出现最多 - \ n \ n + 1以从中删除所有 - \ n。

答案 4 :(得分:3)

另一种选择:

def join_hyphens(text):
    return "\n".join([t for t in text.split("\n") if t]).replace("-\n", "")

拆分\n上的文字,然后使用列表推导删除空行。然后使用\n将其重新连接起来并进行替换。

这很快,但它会产生消除所有空行的副作用。

更新:计时结果

首先构建一个随机数据集:

import numpy as np
p1 = 0.25
p2 = 0.25
NLines = 100
text = "\n".join(
    [
        " ".join(
            [
                "".join(
                    [
                        np.random.choice(list(string.letters)) 
                        for _ in range(np.random.randint(1,10))
                    ]
                ) 
                for _ in range(np.random.randint(1,10))
            ]
        )
        + ("-" if np.random.random() < p1 else "") 
        + "".join(["\n" for _ in range(np.random.randint(1,4)) if np.random.random() < p2])
        for _ in range(NLines)
    ]
) + "this is the last line"

结果:

%%timeit
replace_hyphens(text)
#100000 loops, best of 3: 8.1 µs per loop

%%timeit
join_hyphens(text)
#1000 loops, best of 3: 601 µs per loop

%%timeit
join_hyphens_pault(text)
#100000 loops, best of 3: 17.7 µs per loop

%%timeit
join_hyphens_terry(text)
#1000 loops, best of 3: 661 µs per loop

%%timeit
join_hyphens_jean(text)
#1000 loops, best of 3: 653 µs per loop

%%timeit
join_hyphens_patrick(text)
#100000 loops, best of 3: 10.1 µs per loop

%%timeit
join_hyphens_zwer(text)
#100000 loops, best of 3: 14.4 µs per loop

答案 5 :(得分:1)

我认为部分糟糕的表现是你不断创建新的字符串,因为strings are immutable in python。所以当你这样做时

processed += text[i]

分配了一个大小为processed + 1的新字符串。您希望避免分配更快,因此您将字符串转换为char列表,​​并将其变异。理想情况下,您需要计算所需的空间并预填输出列表以避免不必要的分配。