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

I have prepared a simple code snippet in order to separate the errorneous portion from my web application.

public class Main{
      public static void main(String[] args) throws IOException
      {
             System.out.print("\nEnter a string:->");
             BufferedReader br=new BufferedReader(
                     new InputStreamReader(System.in));
             String temp=br.readLine();        

             String words[]=temp.split(".");

             for(int i=0;i<words.length;i++)
             {
                  System.out.println(words[i]+"\n");
             }
     }
}

I have tested it while building a web application JSF. I just want to know why in the above code temp.split(".") does not work. The statement System.out.println(words[i]+"\n"); displays nothing on the console means that it doesn't go through the loop. When I change the argument of the temp.split() method to other characters, It works just fine as usual. What should be the problem?

share|improve this question
1  
Escape it. Split works on a regex – Romain Hippeau Oct 28 '11 at 23:27
3  
Yikes, it defaults to regular expressions in Java? – Kirk Woll Oct 28 '11 at 23:28
1  
Yup, just that one method though, hence a variation of this question being asked several times per week. – Affe Oct 28 '11 at 23:30

5 Answers

up vote 27 down vote accepted

java.lang.String.split splits on regular expressions, and . in a regular expression means "any character".

Try temp.split("\\.").

share|improve this answer
Great! It works. I have just tried it out. Thank a lot, rob mayoff. – Bhavesh Oct 28 '11 at 23:34

The documentation on split() says:

Splits this string around matches of the given regular expression.

A dot is a special character in regular characters. Use Pattern.quote() on the parameter to split() if you want the split to be on a literal string pattern:

String[] words = temp.split(Pattern.quote("."));
share|improve this answer

The method takes a regular expression, not a string, and the dot has a special meaning in regular expressions. Escape it like so split("\\."). You need a double backslash, the second one escapes the first.

share|improve this answer

It works fine. Did you read the documentation? The string is converted to a regular expression.

. is the special character matching all input characters.

As with any regular expression special character, you escape with a \. You need an additional \ for the Java string escape.

share|improve this answer

Try:

String words[]=temp.split("\\.");

The method is:

String[] split(String regex) 

"." is a reserved char in reges

share|improve this answer
Need two backslashes. – rob mayoff Oct 28 '11 at 23:27

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.