Hi all,
Having a few problems regarding the folowing pattern matching code:
var ipV4Pattern = /^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/;
var ipArray = IPvalue.match(ipV4Pattern);
if i have IPvalue equal to 3.3.3.3 or 4.4.4.4, it places the value of ipArray to 3.3.3.3,3,3,3,3 &...