* In most cases # is a dash (-), a colon (:) or a space ( ).
* We just need to split by our delimiter.
*/
macStringArray = macString.split("[^0-9a-fA-F]+");
else
throw new CmdLineException(owner,
Messages.ILLEGAL_MAC_ADDRESS.format(macString));
byte[] mac = new byte[6];
for (int i = 0; i < 6; i++)
/*