Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.


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

share|improve this question

8 Answers

up vote 17 down vote accepted

split() accepts an regular expression. So you need to skip '.' to not consider it as a regex meta character.

String[] fn = filename.split("\\."); 
return fn[0]; 
share|improve this answer
What were they thinking? – Kobi Aug 2 '10 at 12:22

Split uses regular expressions, where '.' is a special character meaning anything. You need to escape it if you actually want it to match the '.' character:

String[] fn = filename.split("\\.");

(one '\' to escape the '.' in the regular expression, and the other to escape the first one in the Java string)

Also I wouldn't suggest returning fn[0] since if you have a file named something.blabla.txt, which is a valid name you won't be returning the actual file name. Instead I think it's better if you use:

int idx = filename.lastIndexOf('.');
return filename.subString(0, idx);
share|improve this answer

the String#split(String) method uses regular expressions. In regular expressions, the "." character means "any character". You can avoid this behavior by either escaping the "."

filename.split("\\.");

or telling the split method to split at at a character class:

filename.split("[.]");

Character classes are collections of characters. You could write

filename.split("[-.;ld7]");

and filename would be split at every "-", ".", ";", "l", "d" or "7". Inside character classes, the "." is not a special character ("metacharacter").

share|improve this answer

As DOT( . ) is considered as a special character and split method of String expects a regular expression you need to do like this -

String[] fn = filename.split("\\.");
return fn[0];

In java the special characters need to be escaped with a "\" but since "\" is also a special character in Java, you need to escape it again with another "\" !

share|improve this answer

The split must be taking regex as a an argument... Simply change "." to "\\."

share|improve this answer

split takes a regex as argument. So you should pass "." instead of "." because "." is a metacharacter in regex.

share|improve this answer

Wouldn't it be more efficient to use

 filename.substring(0, filename.indexOf("."))

if you only want what's up to the first dot?

share|improve this answer

Usually its NOT a good idea to unmask it by hand. There is a method in the Pattern class for this task:

java.util.regex
static String quote(String s) 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.