vote up 3 vote down star

I'm trying to get the extension of a filename, but for some reason I can't make split work:

System.out.println(file.getName()); //gNVkN.png
System.out.println(file.getName().split(".").length); //0

What am I doing wrong?

flag

3 Answers

vote up 10 vote down check

split() takes a regular expression, not a separator string to split by. The regular expression "." means "any single character", so it will split on anything. To split on a literal dot use:

file.getName().split("\\.")
link|flag
1  
In general, you can use Pattern.quote(str) to obtain a regular expression that matches str literally. – Ramon Oct 31 at 11:12
1  
Great answer, thanks! – etheros Oct 31 at 11:14
Did somebody said Regex :D xkcd.com/208 – Rakesh Juyal Oct 31 at 11:56
vote up 3 vote down

String.split() asks for a regular expression in its parameter, and in regular expressions, . will match any character. To make it work, you need to add a \, like this:

System.out.println(file.getName().split("\\.").length);

You need one backslash to escape the dot, so the regex knows you want an actual dot. You need the other backslash to escape the first backslash, i.e. to tell Java you want to have an actual backslash inside your string.

Read the javadoc for String.split and regular expressions for more info.

link|flag
vote up 4 vote down

Maybe you should reread the api-doc for split(java.lang.String)

The string you pass in is a regex.

Try using

split("\\.")

You need the double backslash because \. is an invalid escape in a Java-string. So you need to escape the backslash itself in the javastring.

link|flag

Your Answer

Get an OpenID
or

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