How to remove specific substrings from a set of strings in Python?

controlfreak

I have a set of strings set1, and all the strings in set1 have a two specific substrings which I don't need and want to remove.
Sample Input: set1={'Apple.good','Orange.good','Pear.bad','Pear.good','Banana.bad','Potato.bad'}
So basically I want the .good and .bad substrings removed from all the strings.
What I tried:

for x in set1:
    x.replace('.good','')
    x.replace('.bad','')

But this doesn't seem to work at all. There is absolutely no change in the output and it is the same as the input. I tried using for x in list(set1) instead of the original one but that doesn't change anything.

Reut Sharabani

Strings are immutable. string.replace (python 2.x) or str.replace (python 3.x) creates a new string. This is stated in the documentation:

Return a copy of string s with all occurrences of substring old replaced by new. ...

This means you have to re-allocate the set or re-populate it (re-allocating is easier with set comprehension):

new_set = {x.replace('.good', '').replace('.bad', '') for x in set1}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to remove specific empty lines from multi line strings in python?

From Dev

Python removing substrings from strings

From Dev

How to remove specific strings from a list

From Dev

How can i create substrings from given strings in python?

From Dev

How to remove HTML tags from python strings?

From Dev

Python regex to remove specific pattern from a list of strings

From Dev

Most efficient way to remove substrings from an array of strings

From Dev

Linux: remove strings from list if they have substrings elsewhere in list

From Dev

Excel VBA: How to remove substrings from a cell?

From Dev

How to remove only certain substrings from a string?

From Dev

How to remove all substrings from a string

From Dev

How to remove substrings from html tags

From Dev

Python - how to remove specific words from list?

From Dev

How to find a specific file with specific set of strings?

From Dev

remove specific strings from a string using a loop

From Dev

How to remove Duplicate SubStrings

From Dev

Python Remove List of Strings from List of Strings

From Dev

How to exclude exact strings (not substrings) from matches in regex?

From Dev

How to transform Strings from a txt file to different substrings in java

From Dev

How to extract substrings from strings in Oracle with PL/SQL?

From Dev

How to remove html tags from strings in Python using BeautifulSoup

From Dev

How to remove all strings from a list of tuples python

From Dev

How to grab name and remove rest of strings from python list

From Dev

How to remove html tags from strings in Python using BeautifulSoup

From Dev

How to remove double quotes from strings in a list in python?

From Dev

Using regex to remove substrings from list items in python

From Dev

find and remove some substrings from a long list of string in python

From Java

How to remove prefixes from strings?

From Dev

Delete substrings from a list of strings

Related Related

  1. 1

    How to remove specific empty lines from multi line strings in python?

  2. 2

    Python removing substrings from strings

  3. 3

    How to remove specific strings from a list

  4. 4

    How can i create substrings from given strings in python?

  5. 5

    How to remove HTML tags from python strings?

  6. 6

    Python regex to remove specific pattern from a list of strings

  7. 7

    Most efficient way to remove substrings from an array of strings

  8. 8

    Linux: remove strings from list if they have substrings elsewhere in list

  9. 9

    Excel VBA: How to remove substrings from a cell?

  10. 10

    How to remove only certain substrings from a string?

  11. 11

    How to remove all substrings from a string

  12. 12

    How to remove substrings from html tags

  13. 13

    Python - how to remove specific words from list?

  14. 14

    How to find a specific file with specific set of strings?

  15. 15

    remove specific strings from a string using a loop

  16. 16

    How to remove Duplicate SubStrings

  17. 17

    Python Remove List of Strings from List of Strings

  18. 18

    How to exclude exact strings (not substrings) from matches in regex?

  19. 19

    How to transform Strings from a txt file to different substrings in java

  20. 20

    How to extract substrings from strings in Oracle with PL/SQL?

  21. 21

    How to remove html tags from strings in Python using BeautifulSoup

  22. 22

    How to remove all strings from a list of tuples python

  23. 23

    How to grab name and remove rest of strings from python list

  24. 24

    How to remove html tags from strings in Python using BeautifulSoup

  25. 25

    How to remove double quotes from strings in a list in python?

  26. 26

    Using regex to remove substrings from list items in python

  27. 27

    find and remove some substrings from a long list of string in python

  28. 28

    How to remove prefixes from strings?

  29. 29

    Delete substrings from a list of strings

HotTag

Archive