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 some Strings. They contain some data. Example: "Alberto Macano. Here is description." And another example: "Pablo Don Carlo. Description here."

What I need: A method to split The Name from description. e.g getting the name in one string, and the description in another string. It woudl be easier if id know how much words will name contain, but it can contatin up to 5-6 words, so idk how mcuh will it be. Exact thing that i know, that a punct splits them.

share|improve this question

3 Answers

up vote 3 down vote accepted

You can use the .split(String regex) method to split the string into an array of strings. So for instance:

String line = "Alberto Macano. Here is description.";
String[] words = line.split("\\.");

The 'words' variable will contain the following:

{0}: Alberto Macano

{1}: Here is description

You might notice that there are two slashes before the period sign, this is because the period is a special keyword in regular expressions, so it has to be escaped by a slash. You might want to look at the Java Regex Documentation for more information.

share|improve this answer
Be careful: "Harry S. Truman. Description follows." – rossum Jul 23 '11 at 11:06
The OP also stated that: "Exact thing that i know, that a punct splits them." He never said that there will be punctuation in the middle of the text that he wants to extract, nor did the OP provide such scenarios. – npinti Jul 23 '11 at 11:10

Use the split(String regex) method in the String class to obtain an array of String objects by splitting a String up based on some regular expression.

share|improve this answer

[String.split][1] will give you an array of Strings divided on regular expression matches. There's a summary of regular expression constructs in the java.util.regex.Pattern API here.

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.