M
meyousikmann
So that I can use String[] mystring.split("regexp") in Java, can
someone give me the regular expression to split this string:
(0, 0.0.0.0-0.0.0.0), (1, 1.1.1.1-1.1.1.1), (2, 2.2.2.2-2.2.2.2)
into this:
(0, 0.0.0.0-0.0.0.0)
(1, 1.1.1.1-1.1.1.1)
(2, 2.2.2.2-2.2.2.2)
TIA
someone give me the regular expression to split this string:
(0, 0.0.0.0-0.0.0.0), (1, 1.1.1.1-1.1.1.1), (2, 2.2.2.2-2.2.2.2)
into this:
(0, 0.0.0.0-0.0.0.0)
(1, 1.1.1.1-1.1.1.1)
(2, 2.2.2.2-2.2.2.2)
TIA