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?
|
|
|
|
|
|
|
|
||||||||||
|
|
|
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. |
|||
|
|
|
|
Maybe you should reread the api-doc for split(java.lang.String) The string you pass in is a regex. Try using
You need the double backslash because |
||
|
|