I have user addresses data in multi line string format,
Example:
Address = “355 Point Rd,
Kenansville, C
A
0335
7”
I am trying to split the address to add in a table like
Street name = 355 Point Rd
City = Kenansville
State = CA
Zip code = 03357
Input:
I have 10 invoices of scanned PDF where I need to take the details of the customers and add to an excel sheet, the multi-line string I got is from “Screen scraping → Get full text”.
Note: I cannot use OCR for this activity.
Output:
Get all the details of each invoice