How to remove text inside brackets in Python?
Last Updated :
18 Feb, 2023
In this article, we will learn how to remove content inside brackets without removing brackets in python.
Examples:
Input: (hai)geeks
Output: ()geeks
Input: (geeks)for(geeks)
Output: ()for()
We can remove content inside brackets without removing brackets in 2 methods, one of them is to use the inbuilt methods from the re library and the second method is to implement this functionality by iterating the string using a for loop
Method 1: We will use sub() method of re library (regular expressions).
sub(): The functionality of sub() method is that it will find the specific pattern and replace it with some string.
This method will find the substring which is present in the brackets or parenthesis and replace it with empty brackets.
Approach :
- Import the re library
- Now find the sub-string present in the brackets and replace with () using sub() method.
- We need to pass the sub() method with 2 arguments those are pattern and string to be replaced with.
- Print the string.
In the below code \(.*?\) represents the regular expression for finding the brackets containing some content. The brackets () have some special meaning in regular expression in python so Backlash \ is used to escape that meaning.
Python3
# Importing module
import re
# Input string
string="(Geeks)for(Geeks)"
# \(.*?\) ==> it is a regular expression for finding
# the pattern for brackets containing some content
string=re.sub("\(.*?\)","()",string)
# Output string
print(string)
Time complexity: O(2^m + n), Where m is the size of the regex, and n is the size of the string. Here the sub() method will take 2^m time to find the pattern using the regex and O(n) to iterate through the string and replace with the "()".
Auxiliary space: O(1), because this operation does not consume any additional memory, but just modifies the input string in place.
Method 2: In this method, we will iterate through the string and if the character that is being iterated is not present in between the parenthesis then the character will be added to the resultant string.
If there is an open or closed parenthesis present in the string then the parenthesis will be added to the resultant string but the string in between them is not added to the resultant string.
Approach:
- Iterate the loop for each character in the string.
- If a '(' or ')' appears in the string we will add it to the result string.
- If the parenthesis number in the string is zero then add the character to the result string.
- Here if the parenthesis number is greater than zero it indicates that the current character which is being iterated is present in between two parentheses
- Print the result string.
Python3
# Input string
string="geeks(for)geeks"
# resultant string
result = ''
# paren counts the number of brackets encountered
paren= 0
for ch in string:
# if the character is ( then increment the paren
# and add ( to the resultant string.
if ch == '(':
paren =paren+ 1
result = result + '('
# if the character is ) and paren is greater than 0,
# then increment the paren and
# add ) to the resultant string.
elif (ch == ')') and paren:
result = result + ')'
paren =paren- 1
# if the character neither ( nor then add it to
# resultant string.
elif not paren:
result += ch
# print the resultant string.
print(result)
Time complexity : O(n), Here n is the length of the string. In the code, we are iterating through the string and appending the content outside of the parenthesis so it would only take the time O(n).
Auxiliary space: O(n), as the resultant string can be of the same length as the input string in the worst case.
Method 3 : Using replace(),split() and join() methods
Python3
# Input string
string="(Geeks)for(Geeks)"
# resultant string
x=string
x=x.replace("(","*(")
x=x.replace(")",")*")
y=x.split("*")
res=[]
for i in y:
if len(i)!=0:
if i[0]=="(" and i[-1]==")":
res.append("()")
else:
res.append(i)
res="".join(res)
print(res)
Time Complexity : O(N)
Auxiliary Space : O(N)
Similar Reads
How to remove brackets from text file in Python ? Sometimes it becomes tough to remove brackets from the text file which is unnecessary to us. Hence, python can do this for us. In python, we can remove brackets with the help of regular expressions. Syntax: # import re module for using regular expression import re patn =  re.sub(pattern, repl, sent
3 min read
How to remove text from a label in Python? Prerequisite: Python GUI â tkinter In this article, the Task is to remove the text from label, once text is initialized in Tkinter. Python offers multiple options for developing GUI (Graphical User Interface) out of which Tkinter is the most preferred means. It is a standard Python interface to the
1 min read
Python | Remove square brackets from list Sometimes, while working with displaying the contents of list, the square brackets, both opening and closing are undesired. For this when we need to print the whole list without accessing the elements for loops, we require a method to perform this. Let's discuss a shorthand by which this task can be
5 min read
How to remove blank lines from a .txt file in Python Many times we face the problem where we need to remove blank lines or empty spaces in lines between our text to make it look more structured, concise, and organized. This article is going to cover two different methods to remove those blank lines from a .txt file using Python code. This is going to
3 min read
How to Remove Item from a List in Python Lists in Python have various built-in methods to remove items such as remove, pop, del and clear methods. Removing elements from a list can be done in various ways depending on whether we want to remove based on the value of the element or index.The simplest way to remove an element from a list by i
3 min read
How to Remove Letters From a String in Python Removing letters or specific characters from a string in Python can be done in several ways. But Python strings are immutable, so removal operations cannot be performed in-place. Instead, they require creating a new string, which uses additional memory. Letâs start with a simple method to remove a s
3 min read
How to remove lines starting with any prefix using Python? Given a text file, read the content of that text file line by line and print only those lines which do not start with a defined prefix. Also, store those printed lines in another text file. There are the following ways in Python in which this task can be done Program to remove lines starting with an
4 min read
Remove Last Element from List in Python Given a list, the task is to remove the last element present in the list. For Example, given a input list [1, 2, 3, 4, 5] then output should be [1, 2, 3, 4]. Different methods to remove last element from a list in python are:Using pop() methodUsing Slicing TechniqueUsing del OperatorUsing Unpacking
2 min read
Ways to remove particular List element in Python There are times when we need to remove specific elements from a list, whether itâs filtering out unwanted data, deleting items by their value or index or cleaning up lists based on conditions. In this article, weâll explore different methods to remove elements from a list.Using List ComprehensionLis
2 min read
Python String - removeprefix() function Python String removeprefix() function removes the prefix and returns the rest of the string. If the prefix string is not found, then it returns the original string.Example:Pythons1 = 'Geeks'.removeprefix("Gee") print(s1)Output:ksLet's take a deeper look at removeprefix():Table of ContentSyntax:Examp
2 min read