I want to extract Data From PDF ie month year But I am Getting Some different sort of output How can i get correct

I want only month name in month column but i am getting all data

Hello @nishant.akhare , If you get all data in single extration, you can Seperate the data by using the regex Method
Try it

system.Text.RegularExpressions.Regex.Match(YourStr,"(?<=Month\s:\s)[A-Za-z]+").tostring.trim

image

how to add this regex