My brain about to explode... Need help about GREP
Hey everyone
I have several abbreviations like v.t. v.p. v.pr. ... etc.
Here is the problem, i am trying to find words that come after abbreviations until first ":" .
I mean --> asdasdasd v.t. asdddddddasda: asdasdasdasdasd
I tried to use positive lookback --> (?<=v\.t\.|v\.i\.|v\.p\.).+?: and it works.
If i search v.pr., v.imp. only, it works as well. But when i try to search both v.i. and v.pr. ...etc. it stops working. (Can't find a match)
(?<=v\.pr\.|v\.imp\.).+?: --> This doesn't work as well.
Funny thing is, when i try to use positive lookahead it works again... ( (?=v\.t\.|v\.i\.|v\.pr\.).+?: -->This works...)
I really can't understand 😕😕
(I have abbreviations like "n.m.pl." as well, and i didn't even try them yet...)
(Should i create a GREP style one by one? Is there an easier way?)
