How to match a substring within 2 square brackets using RegEx in Python

1 Answer

0 votes
import re

def extract_bracketed_content(text):
    pattern = r'\[(.*?)\]'
    
    return re.findall(pattern, text)

input_text = "This is a [sample] string with [multiple] square brackets."

extracted = extract_bracketed_content(input_text)

for item in extracted:
    print(item)


  
'''
run:
  
sample
multiple
  
'''

 



answered Jul 19, 2025 by avibootz
...