ฉันต้องการแทนที่ตัวละครบางตัวดังนี้: &
➔ \&
, #
➔ \#
, ...
ฉันเขียนโค้ดดังนี้ แต่ฉันเดาว่าควรมีวิธีที่ดีกว่า คำใบ้ใด ๆ
strs = strs.replace('&', '\&')
strs = strs.replace('#', '\#')
...
ฉันต้องการแทนที่ตัวละครบางตัวดังนี้: &
➔ \&
, #
➔ \#
, ...
ฉันเขียนโค้ดดังนี้ แต่ฉันเดาว่าควรมีวิธีที่ดีกว่า คำใบ้ใด ๆ
strs = strs.replace('&', '\&')
strs = strs.replace('#', '\#')
...
คำตอบ:
ฉันหมดเวลาวิธีการทั้งหมดในคำตอบปัจจุบันพร้อมกับเพิ่มอีกหนึ่งวิธี
ด้วยสตริงใส่ของabc&def#ghi
และแทนที่ & -> \ & # และ -> \ # text.replace('&', '\&').replace('#', '\#')
วิธีที่เร็วที่สุดคือการเข้าด้วยกันเปลี่ยนเช่นนี้:
การกำหนดเวลาสำหรับแต่ละฟังก์ชั่น:
นี่คือฟังก์ชั่น:
def a(text):
chars = "&#"
for c in chars:
text = text.replace(c, "\\" + c)
def b(text):
for ch in ['&','#']:
if ch in text:
text = text.replace(ch,"\\"+ch)
import re
def c(text):
rx = re.compile('([&#])')
text = rx.sub(r'\\\1', text)
RX = re.compile('([&#])')
def d(text):
text = RX.sub(r'\\\1', text)
def mk_esc(esc_chars):
return lambda s: ''.join(['\\' + c if c in esc_chars else c for c in s])
esc = mk_esc('&#')
def e(text):
esc(text)
def f(text):
text = text.replace('&', '\&').replace('#', '\#')
def g(text):
replacements = {"&": "\&", "#": "\#"}
text = "".join([replacements.get(c, c) for c in text])
def h(text):
text = text.replace('&', r'\&')
text = text.replace('#', r'\#')
def i(text):
text = text.replace('&', r'\&').replace('#', r'\#')
หมดเวลาแบบนี้:
python -mtimeit -s"import time_functions" "time_functions.a('abc&def#ghi')"
python -mtimeit -s"import time_functions" "time_functions.b('abc&def#ghi')"
python -mtimeit -s"import time_functions" "time_functions.c('abc&def#ghi')"
python -mtimeit -s"import time_functions" "time_functions.d('abc&def#ghi')"
python -mtimeit -s"import time_functions" "time_functions.e('abc&def#ghi')"
python -mtimeit -s"import time_functions" "time_functions.f('abc&def#ghi')"
python -mtimeit -s"import time_functions" "time_functions.g('abc&def#ghi')"
python -mtimeit -s"import time_functions" "time_functions.h('abc&def#ghi')"
python -mtimeit -s"import time_functions" "time_functions.i('abc&def#ghi')"
นี่คือรหัสที่คล้ายกันที่จะทำเหมือนกัน แต่มีตัวละครให้หนีมากกว่า (\ `* _ {}> # + -.! $):
def a(text):
chars = "\\`*_{}[]()>#+-.!$"
for c in chars:
text = text.replace(c, "\\" + c)
def b(text):
for ch in ['\\','`','*','_','{','}','[',']','(',')','>','#','+','-','.','!','$','\'']:
if ch in text:
text = text.replace(ch,"\\"+ch)
import re
def c(text):
rx = re.compile('([&#])')
text = rx.sub(r'\\\1', text)
RX = re.compile('([\\`*_{}[]()>#+-.!$])')
def d(text):
text = RX.sub(r'\\\1', text)
def mk_esc(esc_chars):
return lambda s: ''.join(['\\' + c if c in esc_chars else c for c in s])
esc = mk_esc('\\`*_{}[]()>#+-.!$')
def e(text):
esc(text)
def f(text):
text = text.replace('\\', '\\\\').replace('`', '\`').replace('*', '\*').replace('_', '\_').replace('{', '\{').replace('}', '\}').replace('[', '\[').replace(']', '\]').replace('(', '\(').replace(')', '\)').replace('>', '\>').replace('#', '\#').replace('+', '\+').replace('-', '\-').replace('.', '\.').replace('!', '\!').replace('$', '\$')
def g(text):
replacements = {
"\\": "\\\\",
"`": "\`",
"*": "\*",
"_": "\_",
"{": "\{",
"}": "\}",
"[": "\[",
"]": "\]",
"(": "\(",
")": "\)",
">": "\>",
"#": "\#",
"+": "\+",
"-": "\-",
".": "\.",
"!": "\!",
"$": "\$",
}
text = "".join([replacements.get(c, c) for c in text])
def h(text):
text = text.replace('\\', r'\\')
text = text.replace('`', r'\`')
text = text.replace('*', r'\*')
text = text.replace('_', r'\_')
text = text.replace('{', r'\{')
text = text.replace('}', r'\}')
text = text.replace('[', r'\[')
text = text.replace(']', r'\]')
text = text.replace('(', r'\(')
text = text.replace(')', r'\)')
text = text.replace('>', r'\>')
text = text.replace('#', r'\#')
text = text.replace('+', r'\+')
text = text.replace('-', r'\-')
text = text.replace('.', r'\.')
text = text.replace('!', r'\!')
text = text.replace('$', r'\$')
def i(text):
text = text.replace('\\', r'\\').replace('`', r'\`').replace('*', r'\*').replace('_', r'\_').replace('{', r'\{').replace('}', r'\}').replace('[', r'\[').replace(']', r'\]').replace('(', r'\(').replace(')', r'\)').replace('>', r'\>').replace('#', r'\#').replace('+', r'\+').replace('-', r'\-').replace('.', r'\.').replace('!', r'\!').replace('$', r'\$')
นี่คือผลลัพธ์สำหรับอินพุตสตริงเดียวกันabc&def#ghi
:
และด้วยสตริงอินพุตที่ยาวขึ้น ( ## *Something* and [another] thing in a longer sentence with {more} things to replace$
):
การเพิ่มความหลากหลาย:
def ab(text):
for ch in ['\\','`','*','_','{','}','[',']','(',')','>','#','+','-','.','!','$','\'']:
text = text.replace(ch,"\\"+ch)
def ba(text):
chars = "\\`*_{}[]()>#+-.!$"
for c in chars:
if c in text:
text = text.replace(c, "\\" + c)
ด้วยอินพุตที่สั้นกว่า:
ด้วยอินพุตที่ยาวขึ้น:
ดังนั้นฉันจะใช้ba
สำหรับการอ่านและความเร็ว
แจ้งโดย haccks ในความคิดเห็นหนึ่งความแตกต่างระหว่างab
และba
คือการif c in text:
ตรวจสอบ ลองทดสอบกับอีกสองสายพันธุ์:
def ab_with_check(text):
for ch in ['\\','`','*','_','{','}','[',']','(',')','>','#','+','-','.','!','$','\'']:
if ch in text:
text = text.replace(ch,"\\"+ch)
def ba_without_check(text):
chars = "\\`*_{}[]()>#+-.!$"
for c in chars:
text = text.replace(c, "\\" + c)
เวลาเป็นμsต่อลูปใน Python 2.7.14 และ 3.6.3 และบนเครื่องที่แตกต่างจากชุดก่อนหน้าดังนั้นจึงไม่สามารถเปรียบเทียบได้โดยตรง
╭────────────╥──────┬───────────────┬──────┬──────────────────╮
│ Py, input ║ ab │ ab_with_check │ ba │ ba_without_check │
╞════════════╬══════╪═══════════════╪══════╪══════════════════╡
│ Py2, short ║ 8.81 │ 4.22 │ 3.45 │ 8.01 │
│ Py3, short ║ 5.54 │ 1.34 │ 1.46 │ 5.34 │
├────────────╫──────┼───────────────┼──────┼──────────────────┤
│ Py2, long ║ 9.3 │ 7.15 │ 6.85 │ 8.55 │
│ Py3, long ║ 7.43 │ 4.38 │ 4.41 │ 7.02 │
└────────────╨──────┴───────────────┴──────┴──────────────────┘
เราสามารถสรุปได้ว่า:
ผู้ที่มีเช็คจะเร็วกว่า 4x ที่ไม่มีเช็ค
ab_with_check
อยู่ในกลุ่มลูกค้าเป้าหมายบน Python 3 เล็กน้อย แต่ba
(ด้วยเช็ค) มีกลุ่มลูกค้าเป้าหมายมากกว่าในกลุ่ม Python 2
อย่างไรก็ตามบทเรียนที่ยิ่งใหญ่ที่สุดของที่นี่คือPython 3 นั้นเร็วกว่า Python 2 ถึง 3 เท่า ! ไม่มีความแตกต่างอย่างมากระหว่าง Python 3 ที่ช้าที่สุดกับ Python 2 ที่เร็วที่สุด!
if c in text:
ในสิ่งที่จำเป็นba
?
1.45 usec per loop
และโดย: 5.3 usec per loop
สตริงยาวกับ: และไม่มี:4.38 usec per loop
7.03 usec per loop
(โปรดทราบว่าสิ่งเหล่านี้ไม่ได้เปรียบเทียบโดยตรงกับผลลัพธ์ข้างต้นเพราะเป็นเครื่องที่แตกต่างกัน ฯลฯ )
replace
ถูกเรียกเฉพาะเมื่อc
พบในtext
ในกรณีที่ในขณะที่มันถูกเรียกในทุกย้ำในba
ab
>>> string="abc&def#ghi"
>>> for ch in ['&','#']:
... if ch in string:
... string=string.replace(ch,"\\"+ch)
...
>>> print string
abc\&def\#ghi
string=string.replace(ch,"\\"+ch)
? ยังไม่string.replace(ch,"\\"+ch)
พอหรอก
เพียงเชื่อมโยงreplace
ฟังก์ชั่นเช่นนี้
strs = "abc&def#ghi"
print strs.replace('&', '\&').replace('#', '\#')
# abc\&def\#ghi
หากการแทนที่มีจำนวนมากขึ้นคุณสามารถทำได้ด้วยวิธีทั่วไป
strs, replacements = "abc&def#ghi", {"&": "\&", "#": "\#"}
print "".join([replacements.get(c, c) for c in strs])
# abc\&def\#ghi
นี่คือวิธีการใช้ python3 str.translate
และstr.maketrans
:
s = "abc&def#ghi"
print(s.translate(str.maketrans({'&': '\&', '#': '\#'})))
abc\&def\#ghi
สตริงพิมพ์เป็น
.translate()
ดูเหมือนจะช้ากว่าการผูกมัดสามครั้ง.replace()
(ใช้ CPython 3.6.4)
replace()
ตัวเอง แต่ฉันได้เพิ่มคำตอบนี้เพื่อความสมบูรณ์
'\#'
ถูกต้อง? ไม่ควรจะเป็นr'\#'
หรือ'\\#'
? อาจเป็นปัญหาการจัดรูปแบบการบล็อกรหัสบางที
คุณจะใส่แบ็กสแลชไว้ข้างหน้าเสมอหรือไม่ ถ้าเป็นเช่นนั้นลอง
import re
rx = re.compile('([&#])')
# ^^ fill in the characters here.
strs = rx.sub('\\\\\\1', strs)
มันอาจไม่ใช่วิธีที่มีประสิทธิภาพที่สุด แต่ฉันคิดว่ามันเป็นวิธีที่ง่ายที่สุด
r'\\\1'
ไปงานปาร์ตี้สาย แต่ฉันเสียเวลามากกับปัญหานี้จนกระทั่งฉันพบคำตอบของฉัน
สั้นและหวานtranslate
replace
จะดีกว่า หากคุณสนใจฟังก์ชั่นการใช้เวลามากขึ้นอย่าใช้replace
เวลาไม่ได้ใช้
นอกจากนี้ยังใช้translate
ถ้าคุณไม่ทราบว่าชุดของตัวละครที่จะถูกแทนที่ทับซ้อนกับชุดของตัวละครที่ใช้ในการแทนที่
กรณีในจุด:
การใช้replace
อย่างไร้เดียงสาคุณคาดหวังว่าข้อมูลโค้ด"1234".replace("1", "2").replace("2", "3").replace("3", "4")
จะส่งคืน"2344"
แต่จริง"4444"
ๆ แล้วจะกลับมา
ดูเหมือนว่าการแปลจะทำงานตามที่ OP ต้องการ
คุณอาจลองเขียนฟังก์ชัน escape ทั่วไป:
def mk_esc(esc_chars):
return lambda s: ''.join(['\\' + c if c in esc_chars else c for c in s])
>>> esc = mk_esc('&#')
>>> print esc('Learn & be #1')
Learn \& be \#1
วิธีนี้คุณสามารถทำให้ฟังก์ชันของคุณสามารถกำหนดค่าได้ด้วยรายการอักขระที่ควรหลีกเลี่ยง
FYI นี่เป็นเพียงเล็กน้อยหรือไม่มีประโยชน์กับ OP แต่อาจใช้กับผู้อ่านคนอื่น ๆ (โปรดอย่าลงคะแนนฉันรู้เรื่องนี้)
เป็นการออกกำลังกายที่ค่อนข้างไร้สาระ แต่น่าสนใจฉันต้องการดูว่าฉันสามารถใช้การเขียนโปรแกรมฟังก์ชั่นของหลามเพื่อแทนที่ตัวอักษรหลายตัวได้หรือไม่ ฉันค่อนข้างแน่ใจว่าสิ่งนี้จะไม่ชนะเพียงแค่เรียกแทนที่ () สองครั้ง และหากประสิทธิภาพเป็นปัญหาคุณสามารถเอาชนะสิ่งนี้ได้อย่างง่ายดายในสนิม, C, julia, perl, java, javascript และอาจจะแปลกใจ ใช้แพ็คเกจ 'ผู้ช่วยเหลือ' ภายนอกที่เรียกว่าpytoolzเร่งผ่าน cython ( cytoolz เป็นแพคเกจ pypi )
from cytoolz.functoolz import compose
from cytoolz.itertoolz import chain,sliding_window
from itertools import starmap,imap,ifilter
from operator import itemgetter,contains
text='&hello#hi&yo&'
char_index_iter=compose(partial(imap, itemgetter(0)), partial(ifilter, compose(partial(contains, '#&'), itemgetter(1))), enumerate)
print '\\'.join(imap(text.__getitem__, starmap(slice, sliding_window(2, chain((0,), char_index_iter(text), (len(text),))))))
ฉันจะไม่อธิบายด้วยซ้ำเพราะไม่มีใครสนใจใช้สิ่งนี้เพื่อให้ได้มาแทนที่หลายคน อย่างไรก็ตามฉันรู้สึกว่าประสบความสำเร็จในการทำสิ่งนี้และคิดว่ามันอาจเป็นแรงบันดาลใจให้ผู้อ่านรายอื่นหรือชนะการประกวดรหัสที่ทำให้งงงวย
การใช้การลดซึ่งมีอยู่ใน python2.7 และ python3. * คุณสามารถแทนที่สตริงย่อยหลายอันได้อย่างง่ายดายและสะอาด
# Lets define a helper method to make it easy to use
def replacer(text, replacements):
return reduce(
lambda text, ptuple: text.replace(ptuple[0], ptuple[1]),
replacements, text
)
if __name__ == '__main__':
uncleaned_str = "abc&def#ghi"
cleaned_str = replacer(uncleaned_str, [("&","\&"),("#","\#")])
print(cleaned_str) # "abc\&def\#ghi"
ใน python2.7 คุณไม่จำเป็นต้องนำเข้าการลดลง แต่ใน python3 * คุณต้องนำเข้าจากโมดูล functools
อาจเป็นเรื่องง่ายสำหรับตัวอักษรแทน:
a = '&#'
to_replace = ['&', '#']
for char in to_replace:
a = a.replace(char, "\\"+char)
print(a)
>>> \&\#
แล้วเรื่องนี้ล่ะ
def replace_all(dict, str):
for key in dict:
str = str.replace(key, dict[key])
return str
แล้วก็
print(replace_all({"&":"\&", "#":"\#"}, "&#"))
เอาท์พุต
\&\#
คล้ายกับคำตอบ
>>> a = '&#'
>>> print a.replace('&', r'\&')
\&#
>>> print a.replace('#', r'\#')
&\#
>>>
คุณต้องการใช้สตริง 'raw' (แทนด้วย 'r' นำหน้าสตริงการแทนที่) เนื่องจากสตริง raw จะไม่ใช้ backslash เป็นพิเศษ
วิธีขั้นสูงโดยใช้ regex
import re
text = "hello ,world!"
replaces = {"hello": "hi", "world":" 2020", "!":"."}
regex = re.sub("|".join(replaces.keys()), lambda match: replaces[match.string[match.start():match.end()]], text)
print(regex)