I am wondering if i am going about splitting a string on a . the right way? My code is:
String[] fn = filename.split(".");
return fn[0];
I only need the first part of the string thats why I return the first item. I ask because i noticed in the API that . means any character so now im stuck.
Thanks in Advance,
Dean
