Like example, I have these sentences:
- Kaip direktoriu yra sake V.Adamkus man reikia kad perimtu E.Žlabys visa valdyma.
- Kaip direktoriu yra sake V.A. man reikia kad e.z. (Eimantas Žlabys) perimtu B.A. visa valdyma.
- Kaip direktoriu yra sake Valdas Mykolas Brazauskas man reikia kad perimtu visa valdyma A.B..
and I'm now trying to parse these types of words from sentence:
- V.Adamkus, E.Žlabys
- V.A., B.A., A.B.
- Eimantas Žlabys
- Valdas Mykolas Brazauskas
I have written regex:
([A-Ž]{1}\.[A-Ž]{1}\.)|([A-Ž]\s[A-Ž])| ([A-Ž]{1}\.[A-Ž]{1}[a-ž]{1,})
But he don't work with "Eimantas Žlabys" types of words... where I did the mistake in regex to find that tipe of words? :/