Python | Extract characters except of K string

Sometimes, while working with Python strings, we can have a problem in which we require to extract all the elements of string except those which present in a substring. This is quite common problem and has application in many domains including those of day-day and competitive programming. Lets discuss certain ways in which this task can be performed.
Method #1: Using loop This is brute force approach to this problem. In this we employ not operator to test for element presence in master string and extract it if the element is not present in K string.
Python3
# Python3 code to demonstrate working of# Extract characters except of K string# Using loop# initializing stringstest_str1 = "zambiatek is best"test_str2 = "fes"# printing original stringsprint("The original string 1 is : " + test_str1)print("The original string 2 is : " + test_str2)# Extract characters except of K string# Using loopres = []for ele in test_str1:    if ele not in test_str2:        res.append(ele)res = ''.join(res)# printing resultprint("String after removal of substring elements : " + str(res)) | 
The original string 1 is :zambiatek is best The original string 2 is : fes String after removal of substring elements : gkorgk i bt
Time Complexity: O(n)
Auxiliary Space: O(n)
Method #2: Using set operations This task can also be performed by including set operations. One can perform a set difference to get the difference of elements. The drawbacks are that order is not preserved and duplicates are removed.
Python3
# Python3 code to demonstrate working of# Extract characters except of K string# Using set operations# initializing stringstest_str1 = "zambiatek is best"test_str2 = "fes"# printing original stringsprint("The original string 1 is : " + test_str1)print("The original string 2 is : " + test_str2)# Extract characters except of K string# Using set operationsres = ''.join(list(set(test_str1) - set(test_str2)))# printing resultprint("String after removal of substring elements : " + str(res)) | 
The original string 1 is :zambiatek is best The original string 2 is : fes String after removal of substring elements : oti krbg
Time Complexity: O(1)
Auxiliary Space: O(n)
Method#3: Using re.sub() : This task can also be performed using re.sub function. re.sub() function is used to substitute the matched pattern with the another string. We can use empty string for substituting which work as we erase all the matched character in string.
Python3
# # Python3 code to demonstrate working of# Extract characters except of K string# Using re.subimport re# initializing stringstest_str1 = "zambiatek is best"test_str2 = "fes"# printing original stringsprint("The original string 1 is : " + test_str1)print("The original string 2 is : " + test_str2)# Extract characters except of K string# Using re.subres = re.sub(f'[{test_str2}]', "", test_str1)# printing resultprint("String after removal of substring elements : " + str(res)) | 
The original string 1 is :zambiatek is best The original string 2 is : fes String after removal of substring elements : gkorgk i bt
Time Complexity: O(n)
Auxiliary Space: O(n)
Method #4 : Using replace() method
Python3
# Python3 code to demonstrate working of# Extract characters except of K string# Using loop and replace()# initializing stringstest_str1 = "zambiatek is best"test_str2 = "fes"# printing original stringsprint("The original string 1 is : " + test_str1)print("The original string 2 is : " + test_str2)# Extract characters except of K string# Using loop and replace()for i in test_str2:    test_str1=test_str1.replace(i,"")# printing resultprint("String after removal of substring elements : " + str(test_str1)) | 
The original string 1 is :zambiatek is best The original string 2 is : fes String after removal of substring elements : gkorgk i bt
Time Complexity: O(n)
Auxiliary Space: O(n)
Method #5 : Using split() and join() methods
Approach
- Initiate a for loop to traverse test_str2
 - Split test_str1 by each character of test_str2 and join test_str1 by empty string every time
 - Finally at the end display test_str1
 
Python3
# Python3 code to demonstrate working of# Extract characters except of K string# initializing stringstest_str1 = "zambiatek is best"test_str2 = "fes"# printing original stringsprint("The original string 1 is : " + test_str1)print("The original string 2 is : " + test_str2)# Extract characters except of K string# Using loop and replace()for i in test_str2:    test_str1=test_str1.split(i)    test_str1="".join(test_str1)# printing resultprint("String after removal of substring elements : " + str(test_str1)) | 
The original string 1 is :zambiatek is best The original string 2 is : fes String after removal of substring elements : gkorgk i bt
Time Complexity : O(N*M) N – length of test_str2 M -length of test_str1
Auxiliary Space : O(1) since we are displaying test_str1 as output
Method 6 : Using a list comprehension with a conditional statement.
Initialize two strings test_str1 and test_str2.
Print the original strings using print() function.
Use a list comprehension with a conditional statement to extract all characters in the first string test_str1 that are not present in the second string test_str2.
Use the join() method to join the list of extracted characters into a single string.
Store the result in a variable called result_str.
Print the result using print() function.
Python3
# initializing stringstest_str1 = "zambiatek is best"test_str2 = "fes"# printing original stringsprint("The original string 1 is : " + test_str1)print("The original string 2 is : " + test_str2)# Extract characters except of K string# Using list comprehension with a conditional statementresult_str = ''.join([char for char in test_str1 if char not in test_str2])# printing resultprint("String after removal of substring elements : " + str(result_str)) | 
The original string 1 is :zambiatek is best The original string 2 is : fes String after removal of substring elements : gkorgk i bt
Time complexity: O(n), where n is the length of the first string.
Auxiliary space: O(k), where k is the length of the second string.
Method #7: Using str.translate() method
Python3
# Initializing stringstest_str1 = "zambiatek is best"test_str2 = "fes"# Printing original stringsprint("The original string 1 is : " + test_str1)print("The original string 2 is : " + test_str2)# Creating translation tabletranslation_table = str.maketrans('', '', test_str2)# Applying translation table to remove substring elementsresult_str = test_str1.translate(translation_table)# Printing resultprint("String after removal of substring elements: " + str(result_str)) | 
The original string 1 is :zambiatek is best The original string 2 is : fes String after removal of substring elements: gkorgk i bt
Time Complexity: The time complexity for this method is O(n), where n is the length of the input string test_str1.
Auxiliary Space: The auxiliary space complexity is O(1) since the space used is constant, irrespective of the size of the input string.
				
					


