web-dev-qa-db-ja.com

大文字と小文字を区別しない置換

Pythonで大文字と小文字を区別しない文字列置換を行う最も簡単な方法は何ですか?

146
Adam Ernst

stringタイプはこれをサポートしていません。 re.IGNORECASE オプションを指定して 正規表現サブメソッド を使用することをお勧めします。

>>> import re
>>> insensitive_hippo = re.compile(re.escape('hippo'), re.IGNORECASE)
>>> insensitive_hippo.sub('giraffe', 'I want a hIPpo for my birthday')
'I want a giraffe for my birthday'
194
Blair Conrad
import re
pattern = re.compile("hello", re.IGNORECASE)
pattern.sub("bye", "hello HeLLo HELLO")
# 'bye bye bye'
71
Unknown

1行で:

import re
re.sub("(?i)hello","bye", "hello HeLLo HELLO") #'bye bye bye'
re.sub("(?i)he\.llo","bye", "he.llo He.LLo HE.LLO") #'bye bye bye'

または、オプションの「flags」引数を使用します。

import re
re.sub("hello", "bye", "hello HeLLo HELLO", flags=re.I) #'bye bye bye'
re.sub("he\.llo", "bye", "he.llo He.LLo HE.LLO", flags=re.I) #'bye bye bye'
37
viebel

BFlochの答えを続けると、この関数は、大文字と小文字を区別せずに、1つではなく、古いものと新しいもののすべてを変更します。

def ireplace(old, new, text):
    idx = 0
    while idx < len(text):
        index_l = text.lower().find(old.lower(), idx)
        if index_l == -1:
            return text
        text = text[:index_l] + new + text[index_l + len(old):]
        idx = index_l + len(new) 
    return text
11
rsmoorthy

Blair Conradが言ったように、string.replaceはこれをサポートしていません。

正規表現_re.sub_を使用しますが、最初に置換文字列をエスケープすることを忘れないでください。 2.6には_re.sub_のフラグオプションがないため、埋め込み修飾子'(?i)'(またはREオブジェクト、Blair Conradの答えを参照)を使用する必要があります。また、別の落とし穴は、文字列が指定されている場合、subが置換テキスト内のバックスラッシュエスケープを処理することです。これを回避するには、代わりにラムダを渡すことができます。

関数は次のとおりです。

_import re
def ireplace(old, repl, text):
    return re.sub('(?i)'+re.escape(old), lambda m: repl, text)

>>> ireplace('hippo?', 'giraffe!?', 'You want a hiPPO?')
'You want a giraffe!?'
>>> ireplace(r'[binfolder]', r'C:\Temp\bin', r'[BinFolder]\test.exe')
'C:\\Temp\\bin\\test.exe'
_
2
johv

これはRegularExpを必要としません

def ireplace(old, new, text):
    """ 
    Replace case insensitive
    Raises ValueError if string not found
    """
    index_l = text.lower().index(old.lower())
    return text[:index_l] + new + text[index_l + len(old):] 
2
bFloch

この関数は、str.replace()関数とre.findall()関数の両方を使用します。 pattern内のstringのすべての出現を、大文字と小文字を区別しない方法でreplに置き換えます。

def replace_all(pattern, repl, string) -> str:
   occurences = re.findall(pattern, string, re.IGNORECASE)
   for occurence in occurences:
       string = string.replace(occurence, repl)
       return string
1
Nico Bako

以前に答えを投稿したことがなく、このスレッドは本当に古いですが、別の解決策を思いつき、あなたの責任を得ることができると考えました、私は経験がありませんPythonその良い学習以来、それらを指摘してください:)

i='I want a hIPpo for my birthday'
key='hippo'
swp='giraffe'

o=(i.lower().split(key))
c=0
p=0
for w in o:
    o[c]=i[p:p+len(w)]
    p=p+len(key+w)
    c+=1
print(swp.join(o))
0
anddan

\ tを エスケープシーケンス (少し下にスクロール)に変換していたので、 re.sub はバックスラッシュ付きエスケープ文字をエスケープシーケンスに変換することに注意しました。

それを防ぐために、私は次のことを書きました。

大文字と小文字を区別しないで置き換えます。

import re
    def ireplace(findtxt, replacetxt, data):
        return replacetxt.join(  re.compile(findtxt, flags=re.I).split(data)  )

また、エスケープシーケンスに変換された特別な意味のスラッシュ文字を取得している他の回答のように、エスケープ文字で置き換えたい場合は、検索をデコードするか、文字列を置き換えます。 Python 3、.decode( "unicode_escape")#python3のような何かをする必要があるかもしれません

findtxt = findtxt.decode('string_escape') # python2
replacetxt = replacetxt.decode('string_escape') # python2
data = ireplace(findtxt, replacetxt, data)

テスト済みPython 2.7.8

お役に立てば幸いです。

0
Stan S.