I want to match sentences like this :
JJ,JJ,…JJ and JJ.
In this sentence, JJ and comma appear many times.
I know I should write JJ and “,” in two tokens respectively like this :
,
and
But in this way, I can match only 3 adjectives. So how to match “JJ,” occur at least one time?
Can I use the regex or other tags?
THX!!