I have such strings:
ye<V><vn:inf><N><0><V><cpl:pres><3s>
çok<Postp:adv:ablC><0><N><0><V><cpl:pres><3s>
yağ<N><li><Adv><0><N><0><V><cpl:evid><3s>
And I want to extract;
ye, V, 3s
çok, Postp:adv:ablC, 3s
yağ, N, 3s
I have hundreds millions of such strings. What can be the best, efficient, and fastest way to do it? Can you show an example?
Thanks,