From the list of text junk I’m using regular expression. The following will do that job to parse proxy pattern
(\d{1,3}\.){3}\d{1,3}:\d{2,5}. But This pattern parse the text like this:
692.248.222.879:43780
692.83.47.579:43780
Which is not possible IP address. I want to know, how to skip this kind of ranges using regular expressions?
Tools I prefer: Java or C#, notepad++. However any languages will do.
try this:
‘
works with the last one only