I am extracting the MAC address like so
my @tmp = split / /, "domain (123.123.123.123) at 00:11:22:33:44:55 [ether] on eth0";
my $vip = $tmp[3];
but can it be done without using a temporary variable?
|
I am extracting the MAC address like so
but can it be done without using a temporary variable? |
|||
|
Yes it can:
|
|||
|
|||||
|
|
I would recommend this approach, which looks for a "proper" MAC address at word boundaries in the haystack. If the MAC address moves in the string, it will still work, and if
|
|||
|
|
|
You can use
|
|||||||||||||
|
split ' '. – Sinan Ünür Nov 3 '11 at 15:47split ' 'will also handle tabs, and will treat consecutive whitespace characters as one. – ikegami Nov 3 '11 at 20:57