본문 바로가기
프로그래밍/파이썬

파이썬 python 괄호 안의 내용 모두 삭제

by 젤리씨 2023. 2. 10.
728x90

파이썬 python 괄호안의 내용 모두 삭제

 

아래는 대괄호 [ ] 안에 있는 

import re

pattern = r'\[[^]]*\]'
x = '이건 [괄호 안의 불필요한 정보를] 삭제하는 코드'
text = re.sub(pattern=pattern, repl='', string= x)
print(text)

==> 이건  삭제하는 코드

이렇게 나온다

 

 

아래는 소괄호 ( ) 안에 있는

 

import re

pattern = r'\([^)]*\)'
x = '이건 (괄호 안의 불필요한 정보를) 삭제하는 코드'
text = re.sub(pattern=pattern, repl='', string= x)
print(text)

==> 이건  삭제하는 코드

728x90

댓글