How to extract data form pdf to excel file

actually in pdf the format is

first name: mark
last name: Louis

but i need to get data in excel as

first name Last name
mark louis

If you have already extracted the data from PDF, you can concatenate the string using First_Name+" "+Last_Name while populating the data to the datatable

Hi @Sadiq_Icon,

get the first name and last name then build the datatable column contain (first name, Last name)
create a new data row ->add first name and last name.

Regards,
Arivu