I need to write a program to scan a text file and retrieve all ip addresses (of the format 256.256.256.256) in the file. Can you please help me out?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You could write a BNF using Boost::spirit or create a regular expression to find the IP addresses using Boost::regex |
|||
|
|
|
Maybe you should try using regular expressions? You could read the file in, scanning it line by line maybe, and then use a regular expression on the line to extract the IP addresses. If the file contains only IP addresses and no other text, it might be easier to use |
|||
|
|
|
This Regular Expression will do the trick:
Modify this code for your specific needs:
|
|||
|
Does it really have to be C++? Regular expressions and |
|||
|