Thursday, November 11, 2021

Python for Beginners: Replace Characters in a String in Python

While working with text data in our programs, sometimes we may need to modify the data. In this article, we will look at various ways we can replace characters in a string in Python. We will discuss various use cases to understand the procedure in a better manner.

How to replace a character in a string?

To replace a character in a string with another character, we can use the replace() method. The replace() method when invoked on a string, takes the character to be replaced as first input, the new character as the second input and the number of characters to be replaced as an optional input. The syntax for the replace() method is as follows:

str.replace(old_character, new_character, n)

Here, old_character is the character that will be replaced with the new_character. The input n is the optional argument specifying the number of occurrences of old_character that has to be replaced with the new_character.

Let us now discuss how we can replace characters in a string using various use cases.

Replace all occurrences of a character in a string

To replace all the occurrences of a character with a new character, we simply have to pass the old character and the new character as input to the replace() method when it is invoked on the string. You can observe this in the following example.

input_string = "This is PythonForBeginners.com. Here, you   can read python tutorials for free."
new_string = input_string.replace('i', "I")
print("The original string is:")
print(input_string)
print("Output String is:")
print(new_string)

Output:

The original string is:
This is PythonForBeginners.com. Here, you   can read python tutorials for free.
Output String is:
ThIs Is PythonForBegInners.com. Here, you   can read python tutorIals for free.

Here, we have replaced all occurrences of the character ‘i’ with  the character ‘I’ using the replace() method.

We can also replace a group of consecutive characters with a new group of characters instead of replacing a single character. The syntax for replacing the group of consecutive characters remains unchanged. We just have to pass the old characters and new characters to the replace() method as follows.

input_string = "This is PythonForBeginners.com. Here, you   can read python tutorials for free."
new_string = input_string.replace('is', "IS")
print("The original string is:")
print(input_string)
print("Output String is:")
print(new_string)

Output:

The original string is:
This is PythonForBeginners.com. Here, you   can read python tutorials for free.
Output String is:
ThIS IS PythonForBeginners.com. Here, you   can read python tutorials for free.

In this example, you can see that we have replaced “is” with “IS” in the output string.

Replace first n occurrence of a character in a string

To replace the first n  occurrences of characters of a string with another character, we can specify the optional input argument in the replace() method. After specifying the number of  occurrences of the characters to be replaced, n occurrences of characters from the start of the string will be replaced.

For example, we can replace the first 3 occurrences of character ‘a’ in the given text with ‘A’ as follows.

input_string = "An owl sat on the back of an elephant and started to tease him."
new_string = input_string.replace('a', "A",3)
print("The original string is:")
print(input_string)
print("Output String is:")
print(new_string)

Output:

The original string is:
An owl sat on the back of an elephant and started to tease him.
Output String is:
An owl sAt on the bAck of An elephant and started to tease him.

Benefits of using the replace() method

Generally, we need to use regular expressions to find characters in a string to replace them. Regular expressions are hard to understand and need to be used carefully to match the characters that are to be replaced correctly. Moreover, Use of regular expressions is also computationally inefficient. Thus the replace() method gives us an easy and computationally efficient way to  replace characters in a string.

Conclusion

In this article, we have discussed the replace() method in Python. We have also seen the various ways in which we can use it to manipulate the text or staring data.  To learn more about python programming, you can read this article on list comprehension. You may also like this article on the linked list in Python.

The post Replace Characters in a String in Python appeared first on PythonForBeginners.com.



from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...