Other Resources:
Finding blank lines in a text file
How to find blank lines in a text file using regular expression?
✍: Guest
![]()
You can use the following logic to find blank lines in a text file:
1. Read each line from the text file in a loop.
2. Validate each line with this regular expression:
^\s*$
3. If matched, you know that this line is a blank line.
2013-01-29, 0👍, 0💬
Popular Posts:
How to capture the Soso Spider entries from Web log file? Here are some Web log file entries: 127.0....
All credit card numbers issued by American Express must start with 34 or 37 and have 15 digits. For ...
How to capture the MSN (Microsoft Network) bot entries from Web log file? Here are some Web log file...
How to capture the Sogou web spider entries from Web log file? Here are some Web log file entries: 1...
According to the IEEE 802 specification, a MAC address has 6 groups of 2 hexadecimal digits separate...