I have a String that I have to parse for different keywords. For example, I have the String:

"I will come and meet you at the 123woods"

And my keywords are

'123woods' 'woods'

I should report whenever I have a match. However, for this one, I should get a match only on 123woods, not on woods. This eliminates using String.contains() method. The next idea was to use a StringTokenizer but I am unsure if it will perform good and also if using it is the best way. Any suggestions?

link|improve this question

70% accept rate
1  
Are you sure the logic isn't flawed? What if you have keywords - words123 and 123words. Then in the text words123words which are the matches? – Petar Minchev Feb 23 '11 at 12:48
None. I only need exact word matches. – baba Feb 23 '11 at 13:18
feedback

7 Answers

up vote 4 down vote accepted

The example below is based on your comments. It uses a List of keywords, which will be searched in a given String using word boundaries. It uses StringUtils from Apache Commons Lang to build the regular expression and print the matched groups.

String text = "I will come and meet you at the woods 123woods and all the woods";

List<String> tokens = new ArrayList<String>();
tokens.add("123woods");
tokens.add("woods");

String patternString = "\\b(" + StringUtils.join(tokens, "|") + ")\\b";
Pattern pattern = Pattern.compile(patternString);
Matcher matcher = pattern.matcher(text);

while (matcher.find()) {
    System.out.println(matcher.group(1));
}

If you are looking for more performance, you could have a look at StringSearch: high-performance pattern matching algorithms in Java.

link|improve this answer
What if I have an ArrayList<String> and I want to use a Pattern to build it? Seems like I have to use the trusty old StringBuilder? – baba Feb 23 '11 at 13:06
1  
@baba - You could do that, or you could iterate through the List<>. I'm not sure which would be more efficient, you may want to try both approaches if performance is a concern. – Michael Kjörling Feb 23 '11 at 13:12
Personally I would prefer to iterate through the list. Added this option to my answer. – Chris Feb 23 '11 at 13:30
I ment what if I have an ArrayList of keywords to search in the String. For example, my ArrayList<String> will consist of woods and 123woods and some other words. I would have to use a StringBuilder while iterating it in order to construct the Pattern. Then, when the Pattern finds a match, I would have to look up my ArrayList in order to see which one of my keyWords was matched. Also, substring is famously known for its bad performance and it will create a new String object in a loop. To me, it seems like there should be a way better solution for the problem, but I can't figure what. – baba Feb 23 '11 at 14:45
1  
@baba: Now I begin to see. I updated my answer based on your comment. – Chris Feb 23 '11 at 15:22
feedback

How about something like Arrays.asList(String.split(" ")).contains("xx")?

See String.split() and How can I test if an array contains a certain value.

link|improve this answer
feedback

Try to match using regular expressions. Match for "\b123wood\b", \b is a word break.

link|improve this answer
feedback

You can use regular expressions. Use Matcher and Pattern methods to get the desired output

link|improve this answer
feedback

You can also use regex matching with the \b flag (whole word boundary).

link|improve this answer
feedback

Use regex + word boundaries as others answered.

"I will come and meet you at the 123woods".matches(".*\\b123woods\\b.*");

will be true.

"I will come and meet you at the 123woods".matches(".*\\bwoods\\b.*");

will be false.

link|improve this answer
feedback

Hope this works for you:

String string = "I will come and meet you at the 123woods";
String keyword = "123woods";

Boolean found = Arrays.asList(string.split(" ")).contains(keyword);
if(found){
      System.out.println("Keyword matched the string");
}

http://codigounico.blogspot.com/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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