Answers for "how to remove blank lines from string in python"

0

how to remove blank lines from string in python

re.sub(r'^$\n', '', s, flags=re.MULTILINE)
Posted by: Guest on June-15-2021

Code answers related to "how to remove blank lines from string in python"

Python Answers by Framework

Browse Popular Code Answers by Language