다음 코드는 Python 정규식을 사용하여 다음 문자열에서 연속적인 개행 문자로 분할됩니다.
예시
import re s = """I find Tutorialspoint useful""" print re.split(r"[\n]", s)
출력
이것은 출력을 제공합니다.
['I find', ' Tutorialspoint', ' useful']
다음 코드는 Python 정규식을 사용하여 다음 문자열에서 연속적인 개행 문자로 분할됩니다.
import re s = """I find Tutorialspoint useful""" print re.split(r"[\n]", s)
이것은 출력을 제공합니다.
['I find', ' Tutorialspoint', ' useful']