I have used stanford coreNLP's tokenizer to tokenize sentences into tokens. Now I need to detokenize the already tokenized words (i.e I need reverse tokenizer for standford coreNLP.) Is there any JAVA class in standfordcoreNLP or java/python API which we can use?
I/P:
I ca n't use this pen .
I have ( 5 ) points to explain .
I have discuss the 1,2,3 etc. ..
O/P: 
I can't use this pen.
I have (5) points to explain.
I have discuss the 1,2,3 etc... 
				
                        
The
Sentenceclass from the Simple API, has multiple constructors, one of which takes aList<String>argument.So you can do something like: