Languages
[Edit]
EN

Python - replace last 4 characters in string

0 points
Created by:
Maryamcc
481

In this article, we would like to show you how to replace last 4 characters in string in Python.

Quick solution:

text = "12345"

size = len(text)      # text length
replacement = "ABCD"  # replace with this

text = text.replace(text[size - 4:], replacement)

print(text)  # 1ABCD

 

Practical example

In this example, we use replace() method to replace last 4 characters in text string.

text = "12345"

print("String before:", text)

size = len(text)      # text length
replacement = "ABCD"  # replace with this

text = text.replace(text[size - 4:], replacement)

print("String after: ", text)  # 1ABCD

Output:

String before: 12345
String after:  1ABCD

Note:

Number of characters to replace (4) and number of characters in replacement don't have to be the same.

Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Cross technology - replace last 4 characters in string

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join