Parses the ip address from a string in the format of 0.0.0.0 or 0 0 0 0 or 0_0_0_0 into an array of octets
0.0.0.0
0 0 0 0
0_0_0_0
parse("192.168.100.10").unwrap(); // [192, 168, 100, 10] Copy
parse("192.168.100.10").unwrap(); // [192, 168, 100, 10]
Parses the ip address from a string in the format of
0.0.0.0
or0 0 0 0
or0_0_0_0
into an array of octets