I have scraped some data but when i wanna import it into wordpres theres always a like space
i want to import it like this:
any solutions. please keep in mine im an absolute noobie just wanna know if theres a simple way to remove these lines
I have scraped some data but when i wanna import it into wordpres theres always a like space
i want to import it like this:
any solutions. please keep in mine im an absolute noobie just wanna know if theres a simple way to remove these lines
According to the picture, it seems you're using Notepad++.
This will remove all linebreak that is followed by another linebreak:
\R(?=\R)
LEAVE EMPTY
Explanation:
\R # any kind of linebreak (ie. \r, \n, \r\n)
(?=\R) # positive lookahead, make sure we have another linebreak after
Or, if you have installed TextFX plugin
TextX > TextFX Edit > Delete blank lines
Here is a general solution which may work for you:
Find: ^$
Replace: (empty)
This will target all lines having nothing on them except for a newline character. Then, it replaces them with nothing, effectively removing them.