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

Is it possible to use regex to capture a whole phrase as well as each word in the phrase concatenated?

So for :

smith jones

To return:

smith,jones,smithjones

furthermore due to other constraints (solr PatternTokenizer) i can only use one grouping.

share|improve this question

1 Answer

It doesn't look like you'll be able to do this without some extra work. With PatternTokenizerFactory, you are limited to the 'matching' part of regex so you can't do replacements.

Why not create your own tokenizer that uses the token stream created by PatternTokenizer and then builds a concatenated string which it returns at the end?

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.