Split a String using a point like Regex

I want to use the method split from the class String with the character "." bat, it doesn't rules... I have try using the character hexadecimal code '\u002E' bat doesn't works.

I need to divide a IP adress cutting for the points;

84.241.254.1 => 84 241 254 1

Thanks for all

[305 byte] By [KaLPoa] at [2007-11-27 1:01:28]
# 1
It is more efficient to just parse it yourself.But anyways you can use one of the following regexes.[.]\.Naturally with the second you will have to escape the backslash when you use it in a java string.
jschella at 2007-7-11 23:36:21 > top of Java-index,Java Essentials,Java Programming...
# 2
Thanks !!! It Works !!! xD You have been really fast for answer... Thanks
KaLPoa at 2007-7-11 23:36:21 > top of Java-index,Java Essentials,Java Programming...