0

I have around 2 million of rows need to find all the empty rows.

AKRAM          AHMED
SSYED          Aakram     ahmed
(need to find this empty row)
james          hetfield     metallica
Stefan
  • 109,145
  • 14
  • 143
  • 218
akram
  • 69
  • 2
  • 3
  • 7

2 Answers2

1

Search for this regex : \\n\s*\\n

It will search for lines containing only white spaces or nothing.

Mostafa Elgaafary
  • 1,552
  • 2
  • 13
  • 11
0
/^\s*$/ #will match only line containing spaces or nothing.  
edi_allen
  • 1,878
  • 1
  • 11
  • 8