in reply to Re: How to get an integer sub string between two string
in thread How to get an integer sub string between two string

This will not work when the IP address (or any other field) might have a different length...
Compare 1.2.3.4 with 111.222.111.222 for example.
  • Comment on Re^2: How to get an integer sub string between two string

Replies are listed 'Best First'.
Re^3: How to get an integer sub string between two string
by Anonymous Monk on Jan 17, 2015 at 10:51 UTC
    If data isn't fixed length use \S+, perlrequick, its for ppp :)