Python String แทนที่ () Method
ตัวอย่าง
แทนที่คำว่า "กล้วย":
txt = "I like bananas"
x = txt.replace("bananas", "apples")
print(x)
ความหมายและการใช้งาน
วิธี การreplace()
แทนที่วลีที่ระบุด้วยวลีอื่นที่ระบุ
หมายเหตุ: วลีที่ระบุทั้งหมดจะถูกแทนที่ หากไม่มีการระบุอย่างอื่น
ไวยากรณ์
string.replace(oldvalue, newvalue, count)
ค่าพารามิเตอร์
Parameter | Description |
---|---|
oldvalue | Required. The string to search for |
newvalue | Required. The string to replace the old value with |
count | Optional. A number specifying how many occurrences of the old value you want to replace. Default is all occurrences |
ตัวอย่างเพิ่มเติม
ตัวอย่าง
แทนที่คำว่า "หนึ่ง" ที่เกิดขึ้นทั้งหมด:
txt = "one one was a race horse, two two was one too."
x =
txt.replace("one", "three")
print(x)
ตัวอย่าง
แทนที่การเกิดขึ้นครั้งแรกของคำว่า "หนึ่ง":
txt = "one one was a race horse, two two was one too."
x =
txt.replace("one", "three", 2)
print(x)