0
NLP using regex in python
From the string like 'I only eat BROWN BREAD' , need to tokenize BROWN BREAD together. Looking for a regex pattern to perform the operation
1 Réponse
+ 2
So you need a pattern for words in uppercase?
I'd try something like r'\b([A-Z]){2,}\b'