0

I'm able to get all text from ID card with Mobile Vision API Text Recognition but I want to extract specific information such as Name, Surname from the text.

A block of output is like this:

enter image description here

Is there any way extract Name from the String?

or, Is there any API to do this job ?

I'm open to all advices.

Saif Ahmad
  • 1,118
  • 1
  • 8
  • 24
Melih
  • 23
  • 10

1 Answers1

0

I would start from here In Java, how do I check if a string contains a substring (ignoring case)? to acquire index where Name starts and index of Surname as end of substring. Maybe there is some easier way.