I am working on about 1GB incremental file and I want to search for a particular pattern.
Currently I am using Java Regular expressions, do you have any idea how can ...
I want to use reg exp to search for, say, a valid IP address from a list of random text excluding those IP addresses of the form 192.168.*.*, 127.*.*.*, 10.*.*.*. Is there any way to use reg expression to specify a non matching pattern? For example, [^192] means a SINGLE character not equals to either 1, 9 or 2. But instead, ...