Hi,
Can you tell me what is the regular expression for a comma-separated list (in this case - IPs) ?
My list looks like this:
192.168.0.1, 10.%.23.100, %.46.%.1
So far I managed to create this:
^[0-9%]{1,3}.[0-9%]{1,3}.[0-9%]{1,3}.[0-9%]{1,3}$
But I don't know how to specify a comma-separated list of the above sequence.
Thanks,
Ender