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

I am working on a data mining algorithm where I need to tokenize the string using multiple words. I have a separate file which contain all the stopwords. What I need to do is to tokenize the input string by any of the word (stopword) working as delimiter. For eg.
If the file contains stopwords as
a
is
and
of
that

and the input string comes to be
"a computer cluster consists of a set of loosely connected computers that work together"
the output comes to be
computer cluster consists
set
loosely connected computers
work together

Checking string against all the stopwords recursively would be very time consuming? Is there any good method for this?

share|improve this question
2  
Regular expressions could be helpfull. – fonZ Nov 4 '12 at 21:39
Note: you mean "iteratively"not "recursively" – stark Nov 4 '12 at 21:40
I think this: code.google.com/p/guava-libraries/wiki/StringsExplained may help you. But it is't solve you problem. – user902691 Nov 4 '12 at 21:42

1 Answer

up vote 7 down vote accepted

Construct a regular expression of the form

delim1|delim2|delim3

then use String's split() method to split the text by any of the delimiters.

In order to construct the regexp, read each delimiter, and pass it to Pattern.quote before appending to the regex that you build. This would let your delimiters use regex metacharacters as well.

share|improve this answer
Thanks buddy. It worked. – Ansh Nov 4 '12 at 21:52

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.